Tagged Questions
12
votes
5answers
3k 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 ...
11
votes
10answers
843 views
Why use document.write?
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 ...
10
votes
6answers
929 views
Why does this document.write iframe ads code completely break Internet Explorer?
So, I'm trying to find an answer to why this problem is happening; I've fixed the problem, but I want to know why it happened.
TL;DR
Google-provided conversion tracking code that injected an iframe ...
6
votes
3answers
424 views
Replacing document.write()s in an xhtml+xml page
I work for a company that writes software which client sites embed with < script language="JavaScript" src=..... etc. etc. We depend quite a bit on document.write to write elements out to the page. ...
6
votes
6answers
7k views
javascript document.write in external js file. IE problem. Yes, again and still
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 the story.
I have the ...
5
votes
5answers
2k views
What is the best way to lazy load doubleclick ads that use document.write?
Ads requested via doubleclick often get served from an ad provider network that returns javascript that in turn performs document.write to place ads in the page. The use of document.write requires ...
4
votes
3answers
100 views
What are all the evils of document.write [closed]
I know there are lots of issues with using document.write and I avoid it absolutely. However, I have run into an issue with a 3rd party widget that is using it. I don't quite know how to put into ...
4
votes
5answers
267 views
Append to a webpage in javascript
What I want to do is that: a webpage with continuously updating content. (In my case is updating every 2s) New content is appended to the old one instead of overwriting.
Here is the code I have:
var ...
3
votes
3answers
263 views
Invoking document.write()
This code does not work:
<div class="pix"><div id="addTimestamp"></div></div>
<script type="text/javascript">
(function () {
var date = new Date(),
...
3
votes
1answer
257 views
Why is there a time lag for document.write of script tag ? And why is the script tag execution delayed?
In my code, I created 5 iframes with script tag in them to get responses from server.
we need to do this in parallel. Also because of the cross-domain issues, we did not choose Ajax tech, just ...
3
votes
3answers
1k views
Load Advertisement (script) after page using jquery
I'm trying to optimize the page render and download and I'm stuck in this situation...
I'd like to load an advertise at the end of page load, I made a simple test PAGE
Code:
<!DOCTYPE html>
...
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
2answers
733 views
How to override JS function from a firefox extension?
I am trying to intercept calls to document.write for all pages. Setting up the interception inside the page by injecting a script like
function overrideDocWrite() {
alert("Override called");
...
3
votes
1answer
943 views
Overwriting iframe's document.write
For my own purposes (cough lazy-loading an ad script), I am overwriting the document.write function in order to buffer the script's output, writing it to a div, and restoring the native document.write ...
3
votes
5answers
3k 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 ...
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 ...
2
votes
3answers
123 views
Are the javascripts loaded synchronously if one uses document.write?
Is it the same if you load javascript to the page like this:
<script src="http://domain.net/script.js" type="text/javascript"></script>
and like this
<script ...
2
votes
2answers
194 views
Any HTML code after iframe is not executed using document.write
While I was trying to insert an iframe using documnet.write in IE, I got success. But, any html code after that is not executed.
document.write("<div>Hello</div><iframe ...
2
votes
3answers
984 views
JavaScript - what are alternatives to document.write?
In tutorials I've learnt to use document.write. Now I understand that by many this is frowned upon. I've tried print(), but then it literally sends it to the printer.. ^.^
So what are alternatives I ...
2
votes
2answers
115 views
Why is this Javascript code not writing to the webpage?
I have just started learning Javascript. I want "Hello World!" to be written to a webpage once a user clicks a button. I have tried this:
<html>
<head>
<script ...
2
votes
7answers
673 views
Javascript Function Not Accessible when Dynamically Writing a Script
so I have an external javascript file, lets call it something.js and i document.write it to the document. For some reason, I cant access the function in Safari or FireFox.
It goes a little ...
2
votes
2answers
5k views
Safari and Chrome doesn't evaluate dynamically added <script> tag at page load
I am writing small JavaScript code which will load external js files at html page loading.
I tested 2 ways.
Case 1: Used document.write to add <script> tag.
It worked for all browsers (IE, FF, ...
1
vote
3answers
94 views
JavaScript Addition Date Functions
I don't really know too much about core JavaScript, just a dot of jQuery. But I know jQuery is not necessary for what I need here:
I want to use the getdate function to find out the server's day of ...
1
vote
4answers
74 views
How can I create JS event listeners that survive a document.write?
I'm attaching an event listener to the window object. Then later in the script, document.write is being used. (I know, it's evil. I have no choice in the matter.) The problem is, the document.write ...
1
vote
1answer
60 views
document.write XHTML error » h1 not allowed
as I'm using Cufon's on my website, but also want to make it look good with JavaScript disabled, I decided to use
<script type='text/javascript'>
document.write("<h1 ...
1
vote
3answers
96 views
document.write < won't work unless I use < what can I do instead to generate a link?
this code only seems to work when I use < instead of < and > instead of > so how can I get it to work so that it links to the rightful video owner's channel.
<script ...
1
vote
5answers
123 views
Why don't these Javascript line break techniques work in my browser?
I am new to Javascript, and just trying to learn the basics. Neither of these examples display in my browser. What am I doing wrong here?
<HTML>
<HEAD>
<TITLE>My First ...
1
vote
2answers
179 views
size limit for document.write()
Is there a size limit for document.write() as I am trying to write a large content in an html page using document.write().
1
vote
6answers
80 views
Script produces errors I can't find
The ultimate aim is to return a page displaying the following sentence
Once upon a time there was a GENDER named NAME who had a PET named PET NAME.
<SCRIPT language="JavaScript">
var ...
1
vote
2answers
126 views
How can I write the contents of a variable into the text area of a <td>here</td> with javascript?
How can I write the contents of a variable into the text area of a <td>here</td> with javascript? I would like to prompt the user using the called function onclick and store what they type ...
1
vote
2answers
233 views
Is there a way to intercept `document.write`?
I am trying to lazy load some adserver code...
On the page I have this at the moment:
<div class="ad">
<span>pos_1</span>
</div>
I then go through and pull out all of ...
1
vote
2answers
189 views
Javascript:document.write(“hello world”) works at first but
Javascript:document.write("hello world") works at first but if you change the text it does not work for the next text.
To reproduce:
In your address bar:
Type http://nazmulweb.com or any other url
...
1
vote
3answers
166 views
Mozilla Firefox margin spaces
When I try to use a statement like document.write() with object tag parameters in Javascript part of a webpage, Mozilla Firefox seems to put extra marginal spaces on the edges of the page while other ...
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
2answers
207 views
javascript document.write breaking my page
I have this response.write on my page
function roundthecon() {
document.write(Math.round(exchRate*Math.pow(10,2))/Math.pow(10,2));
}
But it is re-writing my whole page and replacing it with the ...
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.
...
1
vote
3answers
138 views
How can JavaScript make new page that contains more JavaScript?
I'm opening new page using JS and writing into it the HTML code, however when I try to write JS inside the new page using document.write() function it doesn't work. Apparently the main JS closes as ...
1
vote
1answer
471 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
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
2answers
39 views
document.write in function body
I have the following JavaScript function which receives coordinates and returns the nearest tube station:
function coord() {
var metro = new YMaps.Metro.Closest(new ...
0
votes
2answers
41 views
Get Javascript document.write Data into variable and show it
I have a remote Javascript which allow us to output data using a function, which returns the data by document.write(thedata).
See http://www.websnapr.com/implementations/. Here :
...
0
votes
3answers
65 views
How to load multiple CSS files within a JS script
Below I have a nested if statement which loads a certain CSS file depending on a users device. I also have a style sheet switcher which needs the CSS files to be loaded if a certain device is being ...
0
votes
1answer
42 views
javascript calling a php file in src , the proper way
I am including the following javascript code in my HTML , which in turn makes a reference to a php file for doing a backend job :
<script type='text/javascript'>
<!--//<![CDATA[
var ...
0
votes
2answers
33 views
How to load a script such that its document.write goes into a hidden element for manipulation?
I want to load a script which performs document.write(s) to display HTML content. Usually, if one was to simply embed the script where the content should appear, it would be good enough BUT not in my ...
0
votes
1answer
108 views
TwitterWidget within SilverStripe
I am trying to integrate TwitterWidget within SilverStripe.
Thats the plugin I am trying to use:
https://twitter.com/about/resources/widgets/widget_profile
If I put this code in a simple *.html ...
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
2answers
368 views
“error:ReferenceError: Security error: attempted to read protected variable: write” with Opera 11.5 and window.open and document.write
I am having an issue with window.open that only occurs with Opera (version 11.5).
function openpageopera()
{
var w = window.open("","_blank");
try
{
...
0
votes
2answers
159 views
document.write() and Ajax - Doesn't work, looking for an alternative
I recently asked a question here, and received a great response (which I will shortly be accepting the most active answer of, barring better alternatives arise) but unfortunately it seems the of the ...
0
votes
1answer
112 views
document.write nested in document.write
I have an ad tag that a third party is trying to stuff inside of a 'document.write' function and it's not working because the ad tag itself also contains document.write's. Is there a way to shove ...
0
votes
1answer
92 views
can javascript document.write head meta part for seo?
can javascript document.write head meta part for seo?
I have dynamic pages, so I want write different head meta part by page loading.
First, I tried jquery, but jquery can not type the words in ...