samarthpathak3

Results 1 comments of samarthpathak3

Hello, you need to use jquery event propagation method. $(document).ready(function() { $("body").mouseup(function(e) { var subject = $("#yourMetisMenuUl"); if(e.target.id != subject.attr('id') && !subject.has(e.target).length) { subject.hide(); } }); });