javascript Programming Glossary: window.addeventlistener
Accessing Variables from Greasemonkey to Page & vice versa http://stackoverflow.com/questions/13485122/accessing-variables-from-greasemonkey-to-page-vice-versa console.log In GM script script global gmScripts_GlobalVar window.addEventListener DOMContentLoaded function console.log In GM script local global.. GM script script global unsafeWindow.gmScripts_GlobalVar window.addEventListener DOMContentLoaded function console.log In GM script local global.. In GM script script global window.gmScripts_GlobalVar window.addEventListener DOMContentLoaded function console.log In GM script local global..
Detect rotation of Android phone in the browser with javascript http://stackoverflow.com/questions/1649086/detect-rotation-of-android-phone-in-the-browser-with-javascript supportsOrientationChange orientationchange resize window.addEventListener orientationEvent function alert 'HOLY ROTATING SCREENS BATMAN..
Detect changes in the DOM http://stackoverflow.com/questions/3219758/detect-changes-in-the-dom for the tests function decide if support.DOMNodeInserted window.addEventListener DOMContentLoaded function if support.DOMSubtreeModified for.. fn false if remain 0 decide false attach test events if window.addEventListener test 'DOMSubtreeModified' test 'DOMNodeInserted' test 'DOMNodeRemoved'..
window.onload vs. body.onload vs. document.onready http://stackoverflow.com/questions/3474037/window-onload-vs-body-onload-vs-document-onready As a side note in this day and age you ought to be using window.addEventListener 'load' function false or attachEvent for older IEs. share improve..
Stop execution of Javascript function (client side) or tweak it http://stackoverflow.com/questions/3972038/stop-execution-of-javascript-function-client-side-or-tweak-it it does not work on acripts that are dynamically created. window.addEventListener 'beforescriptexecute' checkForBadJavascripts true return checkForBadJavascripts..
javascript:how to write $(document).ready like event without jquery http://stackoverflow.com/questions/3989095/javascripthow-to-write-document-ready-like-event-without-jquery false A fallback to window.onload that will always work window.addEventListener load jQuery.ready false window.addEventListener load yourcallback.. work window.addEventListener load jQuery.ready false window.addEventListener load yourcallback false If IE event model is used else if document.attachEvent..
How to disable scrolling temporarily? http://stackoverflow.com/questions/4770025/how-to-disable-scrolling-temporarily wheel e preventDefault e function disable_scroll if window.addEventListener window.addEventListener 'DOMMouseScroll' wheel false window.onmousewheel.. e function disable_scroll if window.addEventListener window.addEventListener 'DOMMouseScroll' wheel false window.onmousewheel document.onmousewheel..
How to use jQuery in Firefox Extension http://stackoverflow.com/questions/491490/how-to-use-jquery-in-firefox-extension
How do I correctly detect orientation change using javascript and Phonegap in IOS? http://stackoverflow.com/questions/5284878/how-do-i-correctly-detect-orientation-change-using-javascript-and-phonegap-in-io 90 alert 'landscape' break default alert 'portrait' break window.addEventListener 'orientationchange' doOnOrientationChange Initial execution..
How does the paste image from clipboard functionality work in Gmail and Google Chrome 12+? http://stackoverflow.com/questions/6333814/how-does-the-paste-image-from-clipboard-functionality-work-in-gmail-and-google-c can get a data url for the stuff you just pasted in Chrome window.addEventListener 'paste' ... or document.onpaste function event var items event.clipboardData..
YouTube iframe API: how do I control a iframe player that's already in the HTML? http://stackoverflow.com/questions/7443578/youtube-iframe-api-how-do-i-control-a-iframe-player-thats-already-in-the-html function messageEvent add listener var w3 add window.addEventListener window.removeEventListener w3 w3 'message' listener 1 add window.attachEvent..
What is the most reliable way to hide / spoof the referrer in JavaScript? http://stackoverflow.com/questions/8893269/what-is-the-most-reliable-way-to-hide-spoof-the-referrer-in-javascript 'A' a a.parentNode if a a.tagName 'A' a.rel 'noreferrer' window.addEventListener 'mousedown' hideRefer true window.addEventListener 'keydown'.. window.addEventListener 'mousedown' hideRefer true window.addEventListener 'keydown' hideRefer true Referrer hiding for Firefox Unfortunately..
Javascript - How to detect if document has loaded (IE 7/Firefox 3) http://stackoverflow.com/questions/978740/javascript-how-to-detect-if-document-has-loaded-ie-7-firefox-3 'loaded' DoStuffFunction else CODE BELOW WORKS if window.addEventListener window.addEventListener 'load' DoStuffFunction false else window.attachEvent.. else CODE BELOW WORKS if window.addEventListener window.addEventListener 'load' DoStuffFunction false else window.attachEvent 'onload'..
|