I'm trying to figure out how to get the clicked element whey using $(document).click() method:
$(document).click(function() {
if ($(this) !== obj) {
obj2.hide();
}
});
In the example above the obj is the object is the dropdown menu - and if clicked I don't want it to do anything, but if the click was on the body of the page or any other element - it should trigger the hide() method.