Please Stop My Cascading Function
Hey guys,
I have a function the opens a "ul" when the user clicks on the expandSearch div. The only problem is that the "click" is being bleeding down to the "li's" as well. I only want the click function to happen when .expandSearch is clicked not it's child element. How do I stop the trickle down effect?
$('.expandSearch').click(function() {
$(this).next().toggle('slow');
return false;
});