jQuery menutup sembulan saat klik di luar

$(document).click(function(e){

   if($(e.target).closest('#popupdivID').length != 0) return false;
   $('#popupdivID').hide();
});
Ugliest Unicorn