I am using this code:
$(\'body\').click(function() { $(\'.form_wrapper\').hide(); }); $(\'.form_wrapper\').click(function(event){ event.stopPropagatio
Even sleaker:
$("html").click(function(){ $(".wrapper:visible").hide(); });