Hi All,
I'm unsure why my code triggers the fadeOut() effect if the menu is already open? See code below:
$('.rtmenu').click(function(e) { e.stopPropagation(); });
$('.rtmenu').mouseout(function(){
$(document).one('click',function() { $('.rtmenu').fadeOut(200); });
})
Any help would be greatly appreciated