jQuery.fn.hide_by_click = function(){ $(document).click({x:this},function(e){ if ($(e.target).closest(e.data.x).length) return; e.data.x.fadeOut(500); $(this).off('click'); }); };