Help for this page

Select Code to Download


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