I am trying to hide all elements with class .dropdown-menu
except the 2nd one:
$('.dropdown-menu').not().eq(1).hide();
But it's not working, How to do this?
I am trying to hide all elements with class .dropdown-menu
except the 2nd one:
$('.dropdown-menu').not().eq(1).hide();
But it's not working, How to do this?