$(function () { $('#menu > li a').click(function (event) { if(event.target != this ) return; $(this).parent().siblings().toggle() $(this).parent().children("ul").toggle() ; event.stopPropagation(); }); });