vote up 1 vote down star

I have some code that runs when a user clicks anywhere in the body of the web page. I only want the JavaScript to run if the click is on a NON-LINK. Any ideas?

Thanks
Mike

flag

63% accept rate

3 Answers

vote up 9 vote down check
document.body.onclick = function(e){
    var target = e ? e.target : window.event.srcElement;
    if (target.nodeName.toLowerCase() !== 'a') {
        // Do something here...
    }
};

Note that any attempts to stop propagation before the event reaches the <body> will stop the above handler from running. To avoid this you can use event capturing.

link|flag
Do I call this like so: <body onclick="function(e)">? Why is there a semicolon after the last brace? Thanks! – Mike Jul 24 at 9:22
There's a semi-colon because it's a variable deceleration; and, no, you don't need to add the event obtrusively; the code above works - just put it in a SCRIPT tag somewhere within the BODY :) – J-P Jul 24 at 9:26
This will be called on any onclick events regarding the body of the site (every event), e is passed as the element. The semicolon is there because this is assigning a block. – ONi Jul 24 at 9:28
This will incorrectly fail on anchors, e.g. <a name="foo">Stuff about Foo</a>. – NickFitz Jul 24 at 9:34
vote up 0 vote down

document.body.onclick = function... is a statement. Hence the closing ';'

link|flag
vote up 0 vote down

Use jQuery.

$(function() {
   $("body").click( function() { /* your code here */ } );
   $("a").click( function(e) { e.stopPropagation(); } );
});

jQuery home.

link|flag
Note: Script goes into your HTML head, you also need a reference to the jQuery library and "$(function()" is short for "$(document).ready( function()". You can find all the information you need at the jQuery site. – lox Jul 24 at 11:05

Your Answer

Get an OpenID
or

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