vote up 7 vote down star
2

I have some html menus, which i show completely when a user clicks on the head of these menus. I would like to hide these elements when the user clicks outside the menus area.

Is something like this possible with jquery?

$("#menuscontainer").clickOutsideThisElement(function() {
// hide the menus
});
flag

60% accept rate

6 Answers

vote up 20 vote down check

Attach a click event to the document body which closes the window. Attach a separate click event to the window which stops propagation to the document body.

 $('body').click(function() {
 //Hide the menus if visible
 });

 $('#menucontainer').click(function(event){
     event.stopPropagation();
 });
link|flag
event.stopPropagation(); beautiful :) – vsync Aug 17 at 16:38
I prefer to bind the document to the click event, then unbind the event when needed. its more efficient. – vsync Aug 17 at 16:47
vote up 4 vote down

Check the window click event target (it should propagate to the window, as long as it's not captured anywhere else), and ensure that it's not any of the menu elements. If it's not, then you're outside your menu.

Or check the position of the click, and see if it's contained within the menu area.

link|flag
vote up 3 vote down

I have an application that works similarly to Eran's example, except I attach the click event to the body when I open the menu... Kinda like this:

$('#menucontainer').click(function(event) {
  $('body').one(function() {
    // Hide the menus
  });

  event.stopPropagation();
});

More information on jQuery's one() function

link|flag
but then if you click on the menu itself, then outside, it won't work :) – vsync Aug 17 at 16:46
vote up 2 vote down

The other solutions here didn't work for me so I had to use:

if(!$(event.target).is('#foo'))
{
	// hide menu
}
link|flag
vote up 0 vote down

If you are scripting for IE and FF 3.* and you just want to know if the click occured within a certain box area, you could also use something like:

this.outsideElementClick = function(objEvent, objElement){   
var objCurrentElement = objEvent.target || objEvent.srcElement;
var blnInsideX = false;
var blnInsideY = false;

if (objCurrentElement.getBoundingClientRect().left >= objElement.getBoundingClientRect().left && objCurrentElement.getBoundingClientRect().right <= objElement.getBoundingClientRect().right)
    blnInsideX = true;

if (objCurrentElement.getBoundingClientRect().top >= objElement.getBoundingClientRect().top && objCurrentElement.getBoundingClientRect().bottom <= objElement.getBoundingClientRect().bottom)
    blnInsideY = true;

if (blnInsideX && blnInsideY)
    return false;
else
    return true;}
link|flag
vote up 0 vote down

I have a problem within this question. If a #menucontainer have a dynamic content and I use live() function to make its future elements to work, stopPropagation() brokes everything. How should I overcome this?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.