Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
});
share|improve this question
6  
Here's a sample of this strategy: jsfiddle.net/tedp/aL7Xe/1 – Ted Nov 9 '11 at 17:02

33 Answers

1 2
up vote 604 down vote accepted

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.

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

$('#menucontainer').click(function(event){
    event.stopPropagation();
});
share|improve this answer
37  
event.stopPropagation(); beautiful :) – vsync Aug 17 '09 at 16:38
12  
I prefer to bind the document to the click event, then unbind the event when needed. its more efficient. – vsync Aug 17 '09 at 16:47
68  
This breaks standard behaviour of many things, including buttons and links, contained within #menucontainer. I am surprised this answer is so popular. – Art Jun 12 '10 at 8:00
19  
This doesn't break behavior of anything inside #menucontainer, since it is at the bottom of the propagation chain for anything inside of it. – Eran Galperin Jun 16 '10 at 19:55
34  
its very beautyfull but you should use $('html').click() not body. The body always has the height of its content. It there is not a lot of content or the screen is very high, it only works on the part filled by the body. – meo Feb 25 '11 at 15:35
show 19 more comments

You can hook up to the click event of document and then checking whether clicked element is an ancestor of menucontainer.

If it is not, then element outside of the #menucontainer is clicked and you can safely hide it.

$(document).click(function(event) { 
    if($(event.target).parents().index($('#menucontainer')) == -1) {
        if($('#menucontainer').is(":visible")) {
            $('#menucontainer').hide()
        }
    }        
})

Hope it helps.

share|improve this answer
1  
While your method works as well, your statement is completely erroneous. #menucontainer is the bottom level in the propagation chain for all the elements it contains, therefor it doesn't change any of its behavior. You should try it and see for yourself. – Eran Galperin Jun 16 '10 at 20:14
3  
This works for me. – luqita May 4 '11 at 19:13
3  
Had issues with the live() and this works like charm! cheers! – chchrist Nov 11 '11 at 9:54
1  
I tried many of the other answers, but only this one worked. Thanks. The code I ended up using was this: $(document).click( function(event) { if( $(event.target).closest('.window').length == 0 ) { $('.window').fadeOut('fast'); } } ); – Pistos Apr 5 '12 at 19:30
7  
I actually ended up going with this solution because it better supports multiple menus on the same page where clicking on a second menu while a first is open will leave the first open in the stopPropagation solution. – umassthrower Apr 7 '12 at 23:41
show 3 more comments

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('click',function() {
    // Hide the menus
  });

  event.stopPropagation();
});

More information on jQuery's one() function

share|improve this answer
2  
but then if you click on the menu itself, then outside, it won't work :) – vsync Aug 17 '09 at 16:46
1  
It helps to put event.stopProgagantion() before binding the click listener to body. – Jasper Kennis Apr 19 '12 at 10:05

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

if(!$(event.target).is('#foo'))
{
	// hide menu
}
share|improve this answer
4  
This worked for me, except I added && !$(event.target).parents("#foo").is("#foo") inside the IF statement so that any child elements won't close the menu when clicked. – honyock Sep 26 '12 at 19:57
3  
I believe this solution is far more elegant than stop propagation, which can have other side effects. You should edit your initial reply to show the whole solution though so it's more clear/easy to use. MBJ's addition is required to make it work properly in all scenarios (although filtering parents by id is not always possible so I would leave the #foo selector out of parents() for this example - it's also a tad confusing filtering parents by an id and then applying .is() to it). I jury rigged this to work with my own jquery plugin where i pass the element directly. Works like a charm. – Frug Oct 4 '12 at 21:14
show 1 more comment

Now there is a plugin for that: outside events (blog post)

The following happens when a clickoutside handler (WLOG) is bound to an element:

  • the element is added to an array which holds all elements with clickoutside handlers
  • a (namespaced) click handler is bound to the document (if not already there)
  • on any click in the document, the clickoutside event is triggered for those elements in that array that are not equal to or a parent of the click-events target
  • additionally, the event.target for the clickoutside event is set to the element the user clicked on (so you even know what the user clicked, not just that he clicked outside)

So no events are stopped from propagation and additional click handlers may be used "above" the element with the outside-handler.

share|improve this answer
$("#menuscontainer").click(function() {
    $(this).focus();
});
$("#menuscontainer").blur(function(){
    $(this).hide();
});

Works for me just fine.

share|improve this answer
show 1 more comment

I don't think what you really need is to close the menu when the user clicks outside; what you need is for the menu to close when the user clicks anywhere at all on the page. If you click on the menu, or off the menu it should close right?

Finding no satisfactory answers above prompted me to write this blog post the other day. For the more pedantic, there are a number of gotchas to take note of:

  1. If you attach a click event handler to the body element at click time be sure to wait for the 2nd click before closing the menu, and unbinding the event. Otherwise the click event that opened the menu will bubble up to the listener that has to close the menu.
  2. If you use event.stopPropogation() on a click event, no other elements in your page can have a click-anywhere-to-close feature.
  3. Attaching a click event handler to the body element indefinitely is not a performant solution
  4. Comparing the target of the event, and its parents to the handler's creator assumes that what you want is to close the menu when you click off it, when what you really want is to close it when you click anywhere on the page.
  5. Listening for events on the body element will make your code more brittle. Styling as innocent as this would break it: body { margin-left:auto; margin-right: auto; width:960px;}
share|improve this answer

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.

share|improve this answer

This worked for me perfectly!!

    $('html').click(function(e){
      if(e.target.id == 'YOUR-DIV-ID') {
        //do something
      } else {
        //do something
      }
    });
share|improve this answer
show 1 more comment

Attach a click event to the document which closes the window. Attaching it to the body only attaches an event to how far the page flows vertically. I used Eran's solution originally but it didn't work for me since my page was very short vertically. Attach a separate click event to the window which stops propagation to the document itself.

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

 $('#menucontainer').click(function(e){ 
     e.stopPropagation(); 
 });
share|improve this answer
show 1 more comment

I've had success with something like this:

var $menuscontainer = ...;

$('#trigger').click(function() {
  $menuscontainer.show();

  $('body').click(function(event) {
    var $target = $(event.target);

    if ($target.parents('#menuscontainer').length == 0) {
      $menuscontainer.hide();
    }
  });
});

The logic is: when #menuscontainer is shown, bind a click handler to body that hides #menuscontainer only if the target (of the click) isn't a child of #menuscontainer.

share|improve this answer

Found this method in some jquery calendar plugin.

function ClickOutsideCheck(e)
{
  var el = e.target;
  var popup = $('.popup:visible')[0];
  if(popup==undefined) return true;

  while (true){
    if (el == popup ) {
      return true;
    } else if (el == document) {
      $(".popup").hide();
      return false;
    } else {
      el = $(el).parent()[0];
    }
  }
};

$(document).bind('mousedown.popup', ClickOutsideCheck);
share|improve this answer
$(document).click(function() {
    $(".overlay-window").hide();
});
$(".overlay-window").click(function() {
    return false;
});

If you click on the document, hide a given element, unless you click on that same element.

share|improve this answer

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;}
share|improve this answer

function:

$(function() {
    debugger;
    $.fn.click_inout = function(clickin_handler, clickout_handler) {
        var item = this;
        var is_me = false;
        item.click(function(event) {
            clickin_handler(event);
            is_me = true;
        });
        $(document).click(function(event) {
            if (is_me) {
                is_me = false;
            } else {
                clickout_handler(event);
            }
        });
        return this;
    }
});

usage:

    this.input = $('<input>')
        .click_inout(
            function(event) { me.ShowTree(event); },
            function() { me.Hide(); }
        )
        .appendTo(this.node);

and functions are very simple:

ShowTree: function(event) {
    this.data_span.show();
}
Hide: function() {
    this.data_span.hide();
}
share|improve this answer
show 1 more comment

This worked perfectly fine in time for me :

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

Thanks very much!

share|improve this answer
var go=false;
$(document).click(function(){
   if(go){
$('#divID').hide();go=false;} 
})
$("#divID").mouseover(function(){
   go=false;
});
$("#divID").mouseout(function (){
   go=true;
});

$("btnID").click( function(){
   if($("#divID:visible").length==1) $("#divID").hide(); //toggle 
   $("#divID").show();
});
share|improve this answer

As another poster said there are a lot of gotchas, especially if the element you are displaying (in this case a menu) has interactive elements. I've found the following method to be fairly robust:

$('#menuscontainer').click(function(event) {
    //your code that shows the menus fully

    //now set up an event listener so that clicking anywhere outside will close the menu
    $('html').click(function(event) {
        //check up the tree of the click target to check whether user has clicked outside of menu
        if ($(event.target).parents('#menuscontainer').length==0) {
            // your code to hide menu

            //this event listener has done its job so we can unbind it.
            $(this).unbind(event);
        }

    })
});
share|improve this answer

I did like this in YUI3:

// detect the click anywhere other than overlay element to close it.
    Y.one(document).on('click', function(e) {

        if(e.target.ancestor('#overlay')=== null && e.target.get('id') != 'show' && overlay.get('visible') == true)  {
            overlay.hide();
        }

    });

I am checking if ancestor is not the widget element container, if target is not which open the widget/element, if widget/element I want to close is already open (not that important).

share|improve this answer

Hook a click event listener on the document. Inside the event listener, you can look at the event object, in particular, the event.target to see what element was clicked:

$(document).click(function(e){
    if ($(e.target).closest("#menuscontainer").length == 0) {
        // .closest can help you determine if the element 
        // or one of its ancestors is #menuscontainer
        console.log("hide");
    }
});
share|improve this answer

Here is my code:

// listen to every clicks
$('html').click(function(event) {
    if ( $('#mypopupmenu').is(':visible') ) {
        if (event.target.id != 'click_this_to_show_mypopupmenu') {
            $('#mypopupmenu').hide();
        }
    }
});

// listen to selector's clicks
$('#click_this_to_show_mypopupmenu').click(function() {
  // if the menu is visible, and you clicked the selector again we need to hide
  if ( $('#mypopupmenu').is(':visible') {
      $('#mypopupmenu').hide();
      return true;
  }

  // else we need to show the popup menu
  $('#mypopupmenu').show();
});
share|improve this answer

This is my solution to this problem:

$(document).ready(function() {
  $('#user-toggle').click(function(e) {
    $('#user-nav').toggle();
    e.stopPropagation();
  });

  $('body').click(function() {
    $('#user-nav').hide(); 
  });

  $('#user-nav').click(function(e){
    e.stopPropagation();
  });
});
share|improve this answer
jQuery().ready(function(){
    $('#nav').click(function (event) {
        $(this).addClass('activ');
        event.stopPropagation();
    });

    $('html').click(function () {
        if( $('#nav').hasClass('activ') ){
            $('#nav').removeClass('activ');
        }
    });
});
share|improve this answer

To be honest, I didn't like any of the solutions above.

The best way to do this, is binding the "click" event to the document, and comparing if that click is really outside the element (just like Art said in his suggestion).

However, you'll have some problems there: You'll never be able to unbind it, and you cannot have an external button to open/close that element.

That's why I wrote this small plugin (click here to link), to simplify these tasks. Could it be simpler?

<a id='theButton' href="#">Toggle the menu</a><br />
<div id='theMenu'>
    I should be toggled when the above menu is clicked,
    and hidden when user clicks outside.
</div>

<script>
$('#theButton').click(function(){
    $('#theMenu').slideDown();
});
$("#theMenu").dClickOutside({ ignoreList: $("#theButton") }, function(clickedObj){
    $(this).slideUp();
});
</script>

I spend a lot of time making it to be reliable, hope you enjoy.

share|improve this answer

This should work:

$('body').click(function(event) {
var obj=$(event.target);
obj=obj['context'];// context : clicked element inside body
if ($(obj).attr('id')!="menuscontainer" && $('#menuscontainer').is(':visible')==true) 
         {
          //hide menu
         }
});
share|improve this answer

Just a warning that using this:

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

$('#menucontainer').click(function(event){
  event.stopPropagation();
});

Prevents the Rails UJS driver from working properly. For example link_to 'click', '/url', :method => :delete will not work.

This might be a workaround:

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

$('#menucontainer').click(function(event){
  if (!$(event.target).data('method')) {
    event.stopPropagation();
  }
});
share|improve this answer

if you are creating elements dynamically and using 'live' function to capture the events, stopPropagation might not work , in that case you can try stopImmediatePropagation. Hope it helps someone

share|improve this answer

Might as well offer one more solution here:

http://jsfiddle.net/zR76D/

Usage:

<div onClick="$('#menu').toggle();$('#menu').clickOutside(function() { $(this).hide(); $(this).clickOutside('disable'); });">Open / Close Menu</div>
<div id="menu" style="display: none; border: 1px solid #000000; background: #660000;">I am a menu, whoa is me.</div>

Plugin:

(function($) {
    var clickOutsideElements = [];
    var clickListener = false;

    $.fn.clickOutside = function(options, ignoreFirstClick) {
        var that = this;
        if (ignoreFirstClick == null) ignoreFirstClick = true;

        if (options != "disable") {
            for (var i in clickOutsideElements) {
                if (clickOutsideElements[i].element[0] == $(this)[0]) return this;
            }

            clickOutsideElements.push({ element : this, clickDetected : ignoreFirstClick, fnc : (typeof(options) != "function") ? function() {} : options });

            $(this).on("click.clickOutside", function(event) {
                for (var i in clickOutsideElements) {
                    if (clickOutsideElements[i].element[0] == $(this)[0]) {
                        clickOutsideElements[i].clickDetected = true;
                    }
                }
            });

            if (!clickListener) {
                if (options != null && typeof(options) == "function") {
                    $('html').click(function() {
                        for (var i in clickOutsideElements) {
                            if (!clickOutsideElements[i].clickDetected) {
                                clickOutsideElements[i].fnc.call(that);
                            }
                            if (clickOutsideElements[i] != null) clickOutsideElements[i].clickDetected = false;
                        }
                    });
                    clickListener = true;
                }
            }
        }
        else {
            $(this).off("click.clickoutside");
            for (var i = 0; i < clickOutsideElements.length; ++i) {
                if (clickOutsideElements[i].element[0] == $(this)[0]) {
                    clickOutsideElements.splice(i, 1);
                }
            }
        }

        return this;
    }
})(jQuery);
share|improve this answer

The broadest way to do this is to select everything on the web page except the element where you don't want clicks detected and bind the click event those when the menu is opened.

Then when the menu is closed remove the binding.

Use .stopPropagation to prevent the event from affecting any part of the menuscontainer.

$("*").not($("#menuscontainer")).bind("click.OutsideMenus", function ()
{
    // hide the menus

    //then remove all of the handlers
    $("*").unbind(".OutsideMenus");
});

$("#menuscontainer").bind("click.OutsideMenus", function (event) 
{
    event.stopPropagation(); 
});
share|improve this answer

Your solutions work fine when only one element is to be managed. If there are multiple elements, however, the problem is much more complicated. Trick with e.stopPropagation() and all the others will not work.

I came up with a solution, maybe not so easy but it's better than nothing. Have a look:

$view.on("click", function(e) {

          if(model.isActivated()) return;

            var watchUnclick = function() {
                    rootView.one("mouseleave", function() {
                        $(document).one("click", function() {
                            model.deactivate();
                        });
                        rootView.one("mouseenter", function() {
                            watchUnclick();                             
                        });
                    });
            };
            watchUnclick();
            model.activate();
});

Hope it helps someone some day :)

share|improve this answer
1 2

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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