document.write() doesn't work after the body has loaded, if you use it the page will go blank. I was going to suggest using $.getScript() instead, but I assume the banner script which is being loaded from file_with_the_banner also uses document.write, so it wouldn't matter.
I suggest you look over a document.write replacement: http://ajax.phpmagazine.net/2006/11/xhtml_and_documentwrite_replac.html http://groups.google.com/group/gwo_archive/browse_thread/thread/6d1af282096012df Or if you're feeling lazy just use an iframe (shitty solution). On Apr 24, 3:23 pm, Don <dominik.l...@sonybmg.com> wrote: > Hi Folks, > by clicking on a link I want to reload a skyscraper banner. The code > for the skyscraper banner is in a file_with_the_banner.html I want to > include this file with jquery ajax. > > I have this code in the index.html > > <script type="text/javascript"> > $(function() { > $('a').click(function() { > $('<div id="info" />').load(file_with_the_banner.html > #bannercode, function() { > $(this).hide() > .appendTo('#skyscraper) > .slideDown(1000); > }); > > return false; > }) > }); > </script> > ...</head></bod>..... > > <div id="skyscraper"></div> > <a>Load new Banner</a> > > /// END INDEX.HTML > > and the code in the file_with_the_banner.html > > <div id="bannercode"> > <script type="text/javascript"> > <!-- > document.write('<scr'+'ipt language="javascript1.1" > src="......URL....;loc=100;target=_blank;grp='+var1+';misc='+new Date > ().getTime()+'"></scri'+'pt>'); > //--> > </script></div> > > The problem is, that the new banner doesn't appear. When I open the > file_with_the_banner.html directly in the browser, the banner appears. > I think that jquery has a problem with document.write. > > Does anyone know how to solve this issue??