How to detect a click outside an element? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T08:49:13Z http://stackoverflow.com/feeds/question/152975 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/152975/how-to-detect-a-click-outside-an-element 7 How to detect a click outside an element? Sergio del Amo 2008-09-30T13:17:12Z 2009-11-17T06:13:44Z <p>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. </p> <p>Is something like this possible with jquery?</p> <pre><code>$("#menuscontainer").clickOutsideThisElement(function() { // hide the menus }); </code></pre> http://stackoverflow.com/questions/152975/how-to-detect-a-click-outside-an-element/152992#152992 4 Answer by Chris MacDonald for How to detect a click outside an element? Chris MacDonald 2008-09-30T13:20:30Z 2008-09-30T13:20:30Z <p>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.</p> <p>Or check the position of the click, and see if it's contained within the menu area.</p> http://stackoverflow.com/questions/152975/how-to-detect-a-click-outside-an-element/153047#153047 21 Answer by Eran Galperin for How to detect a click outside an element? Eran Galperin 2008-09-30T13:38:11Z 2008-09-30T13:38:11Z <p>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.</p> <pre><code> $('body').click(function() { //Hide the menus if visible }); $('#menucontainer').click(function(event){ event.stopPropagation(); }); </code></pre> http://stackoverflow.com/questions/152975/how-to-detect-a-click-outside-an-element/154268#154268 3 Answer by Joe Lencioni for How to detect a click outside an element? Joe Lencioni 2008-09-30T18:13:39Z 2008-09-30T18:13:39Z <p>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:</p> <pre><code>$('#menucontainer').click(function(event) { $('body').one(function() { // Hide the menus }); event.stopPropagation(); }); </code></pre> <p>More information on <a href="http://docs.jquery.com/Events/one" rel="nofollow">jQuery's <code>one()</code> function</a></p> http://stackoverflow.com/questions/152975/how-to-detect-a-click-outside-an-element/1089622#1089622 2 Answer by Dennis for How to detect a click outside an element? Dennis 2009-07-06T23:10:07Z 2009-07-06T23:10:07Z <p>The other solutions here didn't work for me so I had to use:</p> <pre><code>if(!$(event.target).is('#foo')) { // hide menu } </code></pre> http://stackoverflow.com/questions/152975/how-to-detect-a-click-outside-an-element/1278068#1278068 0 Answer by Erik for How to detect a click outside an element? Erik 2009-08-14T14:08:21Z 2009-08-14T14:08:21Z <p>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:</p> <pre><code>this.outsideElementClick = function(objEvent, objElement){ var objCurrentElement = objEvent.target || objEvent.srcElement; var blnInsideX = false; var blnInsideY = false; if (objCurrentElement.getBoundingClientRect().left &gt;= objElement.getBoundingClientRect().left &amp;&amp; objCurrentElement.getBoundingClientRect().right &lt;= objElement.getBoundingClientRect().right) blnInsideX = true; if (objCurrentElement.getBoundingClientRect().top &gt;= objElement.getBoundingClientRect().top &amp;&amp; objCurrentElement.getBoundingClientRect().bottom &lt;= objElement.getBoundingClientRect().bottom) blnInsideY = true; if (blnInsideX &amp;&amp; blnInsideY) return false; else return true;} </code></pre> http://stackoverflow.com/questions/152975/how-to-detect-a-click-outside-an-element/1285138#1285138 0 Answer by Supercharged for How to detect a click outside an element? Supercharged 2009-08-16T19:29:28Z 2009-08-16T19:29:28Z <p>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?</p> http://stackoverflow.com/questions/152975/how-to-detect-a-click-outside-an-element/1746926#1746926 0 Answer by unknown (google) for How to detect a click outside an element? unknown (google) 2009-11-17T06:13:44Z 2009-11-17T06:13:44Z <pre><code>$("#menuscontainer").click(function() { $(this).focus(); }); $("#menuscontainer").blur(function(){ $(this).hide(); }); </code></pre> <p>Works for me just fine.</p>