javascript Programming Glossary: scriptnode.textcontent
Log a web page's dynamically-created, DOM elements with a userscript http://stackoverflow.com/questions/10083010/log-a-web-pages-dynamically-created-dom-elements-with-a-userscript 'script' scriptNode.type text javascript if text scriptNode.textContent text if s_URL scriptNode.src s_URL if funcToRun scriptNode.textContent.. text if s_URL scriptNode.src s_URL if funcToRun scriptNode.textContent ' ' funcToRun.toString ' ' var targ D.getElementsByTagName 'head'..
Changing Javascript on an HTML page out of my control http://stackoverflow.com/questions/10472569/changing-javascript-on-an-html-page-out-of-my-control 'script' scriptNode.type text javascript if text scriptNode.textContent text if s_URL scriptNode.src s_URL if funcToRun scriptNode.textContent.. text if s_URL scriptNode.src s_URL if funcToRun scriptNode.textContent ' ' funcToRun.toString ' ' var targ D.getElementsByTagName 'head'..
How to alter this javascript with Greasemonkey? http://stackoverflow.com/questions/11200509/how-to-alter-this-javascript-with-greasemonkey function replaceTargetJavascript scriptNode var scriptSrc scriptNode.textContent scriptSrc scriptSrc.replace 'auto' s s false 'auto' true addJS_Node..
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 var scriptNode document.createElement 'script' scriptNode.textContent 'top.postMessage ' message ' ' targetDomain ' ' document.body.appendChild.. var scriptNode document.createElement 'script' scriptNode.textContent findIframeAndMessageIt.toString 'findIframeAndMessageIt '..
Accessing Variables from Greasemonkey to Page & vice versa http://stackoverflow.com/questions/13485122/accessing-variables-from-greasemonkey-to-page-vice-versa runOnLoad false scriptNode.type text javascript if text scriptNode.textContent text if s_URL scriptNode.src s_URL if funcToRun scriptNode.textContent.. text if s_URL scriptNode.src s_URL if funcToRun scriptNode.textContent ' ' funcToRun.toString ' ' var targ D.getElementsByTagName 'head'..
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 'script' scriptNode.type text javascript if text scriptNode.textContent text if s_URL scriptNode.src s_URL if funcToRun scriptNode.textContent.. text if s_URL scriptNode.src s_URL if funcToRun scriptNode.textContent ' ' funcToRun.toString ' ' var targ D.getElementsByTagName 'head'..
Why doesn't this userscript work on Facebook? http://stackoverflow.com/questions/6935428/why-doesnt-this-userscript-work-on-facebook 'script' scriptNode.type text javascript if text scriptNode.textContent text if s_URL scriptNode.src s_URL var targ document.getElementsByTagName.. 'script' scriptNode.type text javascript if text scriptNode.textContent text if s_URL scriptNode.src s_URL var targ document.getElementsByTagName..
|