views:

4160

answers:

8

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 the story.

I have the HTML code of banner, I don't know what is the code. Sometimes it's plain HTML, but sometimes it's <script> tag with document.write inside it with <script> tag that has src to doubleclick network in it.

So we have: script > document.write > script(doubleclick).

doubleclick network, as you may know, use document.write too and most of the time they give flash banners that need to load one more js file.

So after all we have: script > document.write > script(doubleclick) > document.write > script > ...

This works good when you place it in HTML directly. Page rendering 1 part, load banner1, keep rendering page, load banner2, finalizing page rendering.

But right now I need to render page first and only after that load banners. As banner use document.write I need to load it before window.onload event (note: after window.onload document.write will rewrite whole document.)

What I've done:

In the head section I have an banners object(real namespace kind of huge :)), with property scope.

When page rendering and banner code is meet I place the code of the banner into the scope and put <div id="bannerPlaceHolder"+id></div> -- so here I will need to put banner content later on

Page rendered and before </body> tag I put <script>banners.load()</script> banners.load method do this for each item in scope array:

document.write('<div id="codeHolder'+id+'">');
document.write(bannerCode);
document.write('</div>');

And only after this I have window.onload() event that do this:

take all banners codeHolders and node-by-node append it nodes from codeHolder to placeHolder, so in result I have loaded banners after rendering the page and banners are on the right places.

All is perfect except IE, it load any js script that was putted in DOM dynamically in asynchron way, so document.write inside doubleclick scripts append nodes to the end of the document and not in my codeHolder nodes. As usual it's only in IE.

I will be really appreciated to anyone who may know the solution.

Thanks

A: 

perhaps you could use the property innerHTML: document.getElementById("x").innerHTML=".................";

Or you could you the DOM: CreateElement and AppendChild

netadictos
innerHTML doesn't execute code in <'script> tagsdynamically I can't create the script as html code that comes can't be controlled
small_jam
there should be new line between tags and dynamically in previous comment
small_jam
+1  A: 

Typically with banners you'll know the exact dimensions and placement, so how about creating an iframe dynamically with the content being what you have in bannerCode and that's all.

jayrdub
A: 

load it into a hidden (size 0x0) iframe, then move it elsewhere with javascript

mike nvck
A: 

Hello, have you found the solution of this problem without using iframe?

A: 

I think iframe solution is ugly. Why cant you load the banners into a separate page and AJAX them into a DIV?

mkoryak
A: 

Split the document.write()-calls in separate -tags, so the output should look like:

document.write(''); document.write(bannerCode);

document.write('');

The IE will wait for document.write(bannerCode) is ready and when writes the closing -tag.

sebakotiv
A: 

I know the original question was asked nearly a year ago but I am having the exact same problem (Doubleclick and everything). Wondering if small_jam managed to find the answer (without using iframes)? Or is anybody else knows the solution?

AussieBattler
A: 

You need writeCapture.js (full disclosure: I'm the author.) All bets are off with 3rd party scripts. Today they use document.write to generate some specific HTML, but tomorrow they could change it and any simple hacks based on replacing document.write will need to be updated. writeCapture takes care of that. Your usage would be something like:

$('#bannerPlaceHolder').writeCapture().html('<script type="text/javascript" src="http://doubleclick.net/bannerCode.js"&gt;&lt;/script&gt;');

The library can handle any arbitrary depth of script tags and does just fine with interspersed HTML. It also has a standalone build if you don't use jQuery.

noah