0
I managed to execute a script where when making mouseover(Hover) on a given object, it executes the desired action, but I would like to execute the action with a click and I am unable to do neither with Javascript, nor Jquery...
<script>
$('.dimmer_area').hover(function(){
$('.dim_area').fadeIn(200);
},function(){
$('.dim_area').fadeOut(200);
});
</script>
Can someone help me ?
Please finish the question by choosing one of the answers, Do not leave the question open. Obg!
– Sam