- or download this
if (window.addEventListener) {
window.addEventListener("load",setupEvents,false);
...
} else {
window.onload=setupEvents;
}
- or download this
function setupEvents(evnt) {
document.forms[1].onsubmit=myAlert;
...
function myAlert() {
alert("gackerriffic");
}
- or download this
var isIE = /*@cc_on!@*/false; // is the browser Internet Explorer
+?
var addEvent = !isIE
...
});
});
- or download this
myNode.onevent = function() {
// your code
if (myNode.onevent) myNode.onevent.call(myNode,arguments);
};