How to detect a click outside an element? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T08:49:13Zhttp://stackoverflow.com/feeds/question/152975http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/152975/how-to-detect-a-click-outside-an-element7How to detect a click outside an element?Sergio del Amo2008-09-30T13:17:12Z2009-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#1529924Answer by Chris MacDonald for How to detect a click outside an element?Chris MacDonald2008-09-30T13:20:30Z2008-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#15304721Answer by Eran Galperin for How to detect a click outside an element?Eran Galperin2008-09-30T13:38:11Z2008-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#1542683Answer by Joe Lencioni for How to detect a click outside an element?Joe Lencioni2008-09-30T18:13:39Z2008-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#10896222Answer by Dennis for How to detect a click outside an element?Dennis2009-07-06T23:10:07Z2009-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#12780680Answer by Erik for How to detect a click outside an element?Erik2009-08-14T14:08:21Z2009-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 >= 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;}
</code></pre>
http://stackoverflow.com/questions/152975/how-to-detect-a-click-outside-an-element/1285138#12851380Answer by Supercharged for How to detect a click outside an element?Supercharged2009-08-16T19:29:28Z2009-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#17469260Answer by unknown (google) for How to detect a click outside an element?unknown (google)2009-11-17T06:13:44Z2009-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>