| javascript Programming Glossary: el.addeventlistenerMSIE and addEventListener Problem in Javascript? http://stackoverflow.com/questions/1695376/msie-and-addeventlistener-problem-in-javascript  is available and use it otherwise use attachEvent if el.addEventListener el.addEventListener 'click' modifyText false else if el.attachEvent.. use it otherwise use attachEvent if el.addEventListener el.addEventListener 'click' modifyText false else if el.attachEvent el.attachEvent.. to do it function bindEvent el eventName eventHandler if el.addEventListener el.addEventListener eventName eventHandler false else if el.attachEvent.. 
 Using an html button to call a javascript function http://stackoverflow.com/questions/1947263/using-an-html-button-to-call-a-javascript-function  using Javascript var el document.getElementById clickMe if el.addEventListener el.addEventListener click doFunction false else if el.attachEvent.. el document.getElementById clickMe if el.addEventListener el.addEventListener click doFunction false else if el.attachEvent el.attachEvent.. 
 how to change behavior of contenteditable blocks after on enter pressed in various browsers http://stackoverflow.com/questions/2735672/how-to-change-behavior-of-contenteditable-blocks-after-on-enter-pressed-in-vario  el document.getElementById your_editable_element if typeof el.addEventListener undefined el.addEventListener keypress enterKeyPressHandler.. if typeof el.addEventListener undefined el.addEventListener keypress enterKeyPressHandler false else if typeof el.attachEvent.. 
 Detect changes in the DOM http://stackoverflow.com/questions/3219758/detect-changes-in-the-dom  function  if support.DOMSubtreeModified for FF 3 Chrome  el.addEventListener 'DOMSubtreeModified' callback false  else for FF 2 Safari Opera.. callback false  else for FF 2 Safari Opera 9.6  el.addEventListener 'DOMNodeInserted' callback false  el.addEventListener 'DOMNodeRemoved'.. 9.6  el.addEventListener 'DOMNodeInserted' callback false  el.addEventListener 'DOMNodeRemoved' callback false   false else if document.onpropertychange.. 
 jQuery History Plugin http://stackoverflow.com/questions/4347168/jquery-history-plugin 
 SVG re-ordering z-index (Raphael optional) http://stackoverflow.com/questions/6566406/svg-re-ordering-z-index-raphael-optional  on this example is done by lines 93 94 of the source code el.addEventListener 'mousedown' function e el.parentNode.appendChild el move to.. 
 |