Use mouse 'on click' instead of 'mouse over' event, jquery

683 views Asked by At

I have this script here which works fine, but I need to make it work on mouse click instead of mouse hover.

I have tried, but failed. It looks simple, but I can't figure it out. Can anyone help?

code is:

$(".cat").hover(function(){
    $(this).parent().parent().find(".sub_menu").hide();
},
function() {
    $(this).parent().parent().find(".sub_menu").show();
});`

code below works in ie, not in firefox.

$(".cat").on('click', function(){
    $(this).parent().parent().find(".sub_menu").toggle();
});
2

There are 2 answers

1
Sushanth -- On BEST ANSWER

Try this

$(".cat").on('click', function(e){
    e.preventDefault();
    $(this).parent().parent().find(".sub_menu").toggle();
});

You can replace the .parent() by using .closest() if the HTML structure is known..

OR

$(".cat").on('click', function(e){
        e.preventDefault();
        $(this).closest('.menu').find(".sub_menu").toggle();
 });

WORKING DEMO

0
adeneo On
$(".cat").on('click', function(){
    $(this).parent().parent().find(".sub_menu").toggle();
});