I was able to execute a script where when mouseover (hover) on a certain object, it performs the desired action, but I would like to execute the action with a click and I am not able to do either with Javascript or JQuery .. .
<script>
$('.dimmer_area').hover(function(){
$('.dim_area').fadeIn(200);
},function(){
$('.dim_area').fadeOut(200);
});
</script>
Can anyone help me?