Tagged Questions

6
votes
9answers
306 views

Why use document.write?

Hi, I was wondering why ad's still use the document.write approach to inserting the add into the page <script language="javascript" type="text/javascript"> document.write("<script …
5
votes
4answers
177 views

JavaScript - controlling the insertion point for document.write

I would like to create a page that runs a 3rd party script that includes document.write after the DOM was already fully loaded. My page is not XHTML. My problem is that the document.write is …
2
votes
4answers
175 views

Why won’t this JavaScript (using document.open and document.write) work in Internet Explorer or Opera?

I desperately need some help on this one. I've created a <script> that closely parallels, and reproduces the problem of, another more complex <script> that I've written elsewhere. Here's …
2
votes
1answer
118 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
7answers
2k views

javascript document.write in external js file. IE problem. Yes, again and still.

Hello the Community. Working on big, high loaded project I got the problem that already described in billion of topics on forums and blog, but there is no solution that will help in my case. Here is …
0
votes
0answers
15 views

Google Analytics Tracking Code and Document.write causing requests to localhost?

Google Analytics recommends that the code below be inserted before the </body> tag on all web pages on our website to enable visitor tracking. <script type="text/javascript"> var gaJsHost …
0
votes
4answers
147 views

JS: Displaying html w/ variables via document.write.

Hi all, I just started learning JS the other day and am (of course) having some difficulty. I usually grasp onto things quickly but I can't for the life of my find a solution to this. I'd like to …
0
votes
2answers
299 views

When using onclick-event and document.write in javascript, does it always have to open in new window.

Does it have to open in the sam Eg: function write(){ document.write("write") } input type="button" onclick="write()" value="Click"
0
votes
3answers
111 views

How do JavaScript tidbits insert remote widgets onto a page?

Let's say I have a web service that allows users to insert a piece of JavaScript onto their page which, when loaded, will grab a widget from my server and insert it into their page. How might I go …