javascript Programming Glossary: window.top
Chrome userscript error: “Unsafe JavaScript attempt to access frame” http://stackoverflow.com/questions/10666258/chrome-userscript-error-unsafe-javascript-attempt-to-access-frame @include http www.sockshare.com UserScript if window.top window.self var player document.getElementById 'player' setSize.. page in pink. Alternatively you can test like this if window.top window.self Code to run when page is the main site... else Code..
How can two instances of a userscript communicate between frames? http://stackoverflow.com/questions/11769066/how-can-two-instances-of-a-userscript-communicate-between-frames UserScript console.log Script start... if window.top window.self console.log Userscript is in the MAIN page. Setup..
execute function only once http://stackoverflow.com/questions/12117902/execute-function-only-once can. Add code like this near the top of your script if window.top window.self Don't run on frames or iframes. return share improve..
How to call Greasemonkey's GM_ functions from code that must run in the target page scope? http://stackoverflow.com/questions/14229539/how-to-call-greasemonkeys-gm-functions-from-code-that-must-run-in-the-target-p ... Only run in the top page not the various iframes. if window.top window.self var timeBtn document.createElement 'a' timeBtn.id.. ... Only run in the top page not the various iframes. if window.top window.self var timeBtn document.createElement 'a' timeBtn.id..
How to exclude iframe in Greasemonkey http://stackoverflow.com/questions/1535404/how-to-exclude-iframe-in-greasemonkey top of my scripts to avoid running on frames or iframes if window.top window.self don't run on frames or iframes return share improve..
Calling a jQuery function inside html return from an AJAX call http://stackoverflow.com/questions/235967/calling-a-jquery-function-inside-html-return-from-an-ajax-call
How to identify if a webpage is being loaded inside an iframe or directly into the browser window? http://stackoverflow.com/questions/326069/how-to-identify-if-a-webpage-is-being-loaded-inside-an-iframe-or-directly-into-t iframe share improve this question if window.self window.top not in a frame else in a frame top and self are both window..
Difference between window.location.href and top.location.href http://stackoverflow.com/questions/3332756/difference-between-window-location-href-and-top-location-href the current page. top.location.href which is an alias of window.top.location.href returns the location of the topmost window in.. parent top is a reference to itself in other words window window.top . top is useful both when you're dealing with frames and when..
Getting setting cookies on different domains, with javascript or other http://stackoverflow.com/questions/402348/getting-setting-cookies-on-different-domains-with-javascript-or-other i could just bring it when the Ajax call is complete using window.top but there's timing issues because its not relative to when the..
Run greasemonkey script only once per page load? http://stackoverflow.com/questions/4190442/run-greasemonkey-script-only-once-per-page-load that by putting this code just after the metadata block if window.top window.self don't run on frames or iframes Optional GM_log 'In..
IE Bug (window === top) === false http://stackoverflow.com/questions/4850978/ie-bug-window-top-false both IE Chrome. o o.o o o o.o true Turns out window.window window.top true window.window window.self true So it's an issue with getting..
Prevent iframe stealing http://stackoverflow.com/questions/5522097/prevent-iframe-stealing improve this question With JavaScript you can do if window.top window not inside iframe else if parent.parent.someFunction.. else alert framing is not allowed OR if window.top window.self window.top.location.replace window.self.location.href.. alert framing is not allowed OR if window.top window.self window.top.location.replace window.self.location.href Some modern browsers..
$(document).ready equivalent without jQuery http://stackoverflow.com/questions/799981/document-ready-equivalent-without-jquery is ready if document.documentElement.doScroll window window.top function if jQuery.isReady return try If IE is used use the..
Dom loaded event cross borwser native javascript code http://stackoverflow.com/questions/8181061/dom-loaded-event-cross-borwser-native-javascript-code frame use scroll hack else if window.attachEvent window window.top if _readyQueue.push handler 1 _readyIEtop IE frame use onload..
Detect iFrame embedding in Javascript http://stackoverflow.com/questions/925039/detect-iframe-embedding-in-javascript
|