I am using this code:
$(\'body\').click(function() { $(\'.form_wrapper\').hide(); }); $(\'.form_wrapper\').click(function(event){ event.stopPropagatio
According to the docs, .blur() works for more than the tag. For example:
.blur()
$('.form_wrapper').blur(function(){ $(this).hide(); });