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
|
|
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
|
||
|
|
|
|
Note that any attempts to stop propagation before the event reaches the |
||||||||
|
|
|
document.body.onclick = function... is a statement. Hence the closing ';' |
||
|
|
|
|
Use jQuery.
|
||
|