Hi guys,
$(function(){
$(".first").click(function(){
$(".first ul li").slideUp();
$(this).find("li").slideDown();
});
});
How can I make the active .first
element temporary unclickable until its class siblings are referred as active and of course executing the code above is necessary.
Also no matter what type it is: div
, li
.
Appreciate your help.