Tagged Questions
3
votes
2answers
347 views
Controlling the scope of a document.write call coming from a third party
I'm writing a webpage that relies on an external javascript file (that I have no control of), which returns data by using document.write's. Is there any way to dynamically call the function without it ...
3
votes
1answer
283 views
Aliasing a DOM function (Document.Write) and scripts on other domains
I want to force external 3rd party scripts (on seperate domains) to use my own custom implementation of document.write when I load them on my domain.
ie:
document.write = function(args) {
// My ...
1
vote
5answers
250 views
Recommended method to locate the current script?
I am writing a script that needs to add DOM elements to the page, at the place where the script is located (widget-like approach).
What is the best way to do this?
Here are the techniques I am ...
1
vote
4answers
1k views
using the DOM to add elements, document.write
I have just learned (no thanks to IE) that I cannot use document.write scripts in XHTML. However, it seems there is a way around it by using the DOM to add elements. I don't know. It's foreign to me.
...
0
votes
1answer
73 views
document.write in Chrome Extension
I'm new to this so please bear with me. I am trying to write a chrome extension that does the following:
Detect www.website.com/anypage.html. If this website is detected, then do the following.
...
0
votes
1answer
57 views
Using QUnit to test utility functions that use document.write(): Make document object be some other document?
I have a pair of utility functions that use document.write() to alter the DOM, injecting tags that load JavaScript and CSS.
Is it possible to use QUnit to test that the injection is happening ...
0
votes
3answers
344 views
When I use javascript's document.write command it doesn't seem to display leading spaces. Help please
This is the code I wrote up to display a Mancala board but it won't display the leading space for some reason. Does anyone know why this is happening? Any help is greatly appreciated.
function ...