Ok, I have been trying to figure this out for a long time now and finally have the time to investigate. As the title suggests “What is the difference”? I know that this works the way I want it to.
addLoadEvent(converter);
// Converter
function converter() {
var pixels = document.getElementById("pixels");
pixels.addEventListener("keyup", updateNode, true);
pixels.addEventListener("keydown", updateNode, true);
}
But this doesn’t, and only runs once.
addLoadEvent(converter);
// Converter
function converter() {
var pixels = document.getElementById("pixels");
pixels.onkeydown = updateNode;
pixels.onkeyup = updateNode;
}
What I’m I lacking… What is the difference? Any links to the topic would be helpful.
My assumption was that the handler should act like the listener but it doesn’t. In fact does a listener even need to be added to the addLoadEvent function?
addEventListeneradds an event handler function to the event. There can be an unlimited number of event handlers this way.Setting
onxxxxxsets the event handler to that one function.From the Mozilla Developer central:
And see this chapter of the same document for a comparison of the old
onxxxxway.