It's important to remember what onclick actually is: It's an attribute (and a reflected property) that can be used to attach a handler to the click event using the old, "DOM0" (e.g., never-standardized) mechanism.
If you are attaching a click handler using a standardized mechanism like addEventListener or IE's near-equivalent attachEvent, onclick will remain null or undefined because those are not assigned to the onclick attribute or property.
Here's an exploration of this diffrence (live example):
HTML:
<p>This one has an onclick:
<img src='http://www.gravatar.com/avatar/0f1f6b8a8416c6cf0a97cfc864889788?s=32&d=identicon&r=PG' id='dom0img' onclick='dom0click(this);'></p>
<p>This one has a DOM2 click handler:
<img src='http://www.gravatar.com/avatar/ca3e484c121268e4c8302616b2395eb9?s=32&d=identicon&r=PG' id='dom2img'></p>
JavaScript:
window.onload = function() {
var dom0img, dom2img;
dom0img = document.getElementById('dom0img');
dom2img = document.getElementById('dom2img');
if (dom2img.addEventListener) {
dom2img.addEventListener('click', dom2click, false);
display("Attached DOM2-style handler to dom2img via addEventListener");
}
else if (dom2img.attachEvent) {
dom2img.attachEvent('onclick', dom2click);
display("Attached DOM2-style handler to dom2img via attachEvent");
}
else {
display("Can't attach DOM2-style handler to dom2img");
}
display("dom0img.onclick = " + dom0img.onclick);
display("dom2img.onclick = " + dom2img.onclick);
};
function dom0click(img) {
display("DOM0 click on " + img.id);
}
function dom2click() {
display("DOM2 click on " + this.id);
}
function display(msg) {
var p = document.createElement('p');
p.innerHTML = msg;
document.body.appendChild(p);
}
Output on Chrome:
Attached DOM2-style handler to dom2img via addEventListener
dom0img.onclick = function onclick(event) { dom0click(this); }
dom2img.onclick = null
Output on IE6 and IE8:
Attached DOM2-style handler to dom2img via attachEvent
dom0img.onclick = function anonymous() { dom0click(this); }
dom2img.onclick = null
Output on Firefox:
Attached DOM2-style handler to dom2img via addEventListener
dom0img.onclick = function onclick(event) { dom0click(this); }
dom2img.onclick = undefined
clickis an event.onclickis a handler. – Alin Purcaru Dec 11 '10 at 11:19onclickis an attribute, and also a property (the property reflects the attribute); what you assign to it is a handler. – T.J. Crowder Dec 11 '10 at 11:22onclickis neither attribute nor handler. It is a variable which when interpreted in the context of an element object is an attribute that points to a handler. – Box9 Dec 11 '10 at 11:29var fn = function(){};, thenfnis not a function. – Alin Purcaru Dec 11 '10 at 11:30onclickis neither attribute nor..." That's kind of going to come as a surprise to the W3C: w3.org/TR/html5/webappapis.html#handler-onclick It says they "...must be supported by all HTML elements, as both content attributes and IDL attributes..." (an "IDL attribute" being what we commonly call a "reflected property": w3.org/TR/html5/…). – T.J. Crowder Dec 11 '10 at 11:37