User small_jam - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T10:29:59Z http://stackoverflow.com/feeds/user/15752 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/315552/javascript-document-write-in-external-js-file-ie-problem-yes-again-and-still 1 javascript document.write in external js file. IE problem. Yes, again and still. small_jam 2008-11-24T21:31:53Z 2009-10-30T12:02:22Z <p>Hello the Community.</p> <p>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.</p> <p>I have the HTML code of banner, I don't know what is the code. Sometimes it's plain HTML, but sometimes it's <code>&lt;script&gt;</code> tag with document.write inside it with <code>&lt;script&gt;</code> tag that has src to doubleclick network in it.</p> <p>So we have: script > document.write > script(doubleclick).</p> <p>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.</p> <p>So after all we have: script > document.write > script(doubleclick) > document.write > script > ...</p> <p>This works good when you place it in HTML directly. Page rendering 1 part, load banner1, keep rendering page, load banner2, finalizing page rendering.</p> <p>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.)</p> <p>What I've done:</p> <p>In the head section I have an banners object(real namespace kind of huge :)), with property scope.</p> <p>When page rendering and banner code is meet I place the code of the banner into the scope and put <code>&lt;div id="bannerPlaceHolder"+id&gt;&lt;/div&gt;</code> -- so here I will need to put banner content later on</p> <p>Page rendered and before <code>&lt;/body&gt;</code> tag I put <code>&lt;script&gt;banners.load()&lt;/script&gt;</code> banners.load method do this for each item in scope array:</p> <pre><code>document.write('&lt;div id="codeHolder'+id+'"&gt;'); document.write(bannerCode); document.write('&lt;/div&gt;'); </code></pre> <p>And only after this I have <code>window.onload()</code> event that do this:</p> <p>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.</p> <p>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.</p> <p>I will be really appreciated to anyone who may know the solution.</p> <p>Thanks</p> http://stackoverflow.com/questions/315893/how-to-convert-a-literal-object-into-user-defined-object-in-javascript/316067#316067 0 Answer by small_jam for How to convert a literal object into user defined object in javascript? small_jam 2008-11-25T01:06:16Z 2008-11-25T01:12:06Z <p>do you use prototype framework? if yes - here is an example</p> <pre> <code> var cats = [ {id: 15, name: 'Tables', count:45 }, {id: 23, name: 'Chairs', count:34 } ]; var catsObjects = []; cats.each(function(item){ var newObject = new Cat(); Object.extend(newObject, item); catsObjects.push(newObject); }); </code> </pre> <p>basically Array.each function is the same as "for i &lt; Array.length"<br/> and Object.extend is the same as property-by-property adding properties to newObject</p> http://stackoverflow.com/questions/275351/javascript-reflection/315635#315635 0 Answer by small_jam for Javascript Reflection small_jam 2008-11-24T21:54:06Z 2008-11-24T21:54:06Z <p>you can use var that = this; trick</p> <pre> var Test = function() { var that = this; function testOne() {} function testTwo() {} function testThree() {} function getMethods() { for (i in that) { alert(i); } } return { getMethods : getMethods } }(); </pre> http://stackoverflow.com/questions/82530/svn-over-http-proxy 1 svn over HTTP proxy small_jam 2008-09-17T12:23:56Z 2008-09-17T12:42:14Z <p>Hi all.<br> I'm on laptop (Ubuntu) with a network that use HTTP proxy (only http connections allowed).<br> When I use svn up for url like 'http://.....' everything is cool (google chrome repository works perfect), but right now I need to svn up from server with 'svn://....' and I see connection refused.<br> I've set proxy configuration in /etc/subversion/servers but it doesn't help.<br> Anyone have opinion/solution?<br> Thanks.<br> Anton.<br></p> http://stackoverflow.com/questions/82530/svn-over-http-proxy/82597#82597 0 Answer by small_jam for svn over HTTP proxy small_jam 2008-09-17T12:30:22Z 2008-09-17T12:30:22Z <p>@ Cetra, yes :)<br> @ Olaf, It's not my server, I can't control it, just need to tunnel somehow and can't find solution over googling yet.</p> http://stackoverflow.com/questions/315552/javascript-document-write-in-external-js-file-ie-problem-yes-again-and-still/315577#315577 Comment by small_jam on javascript document.write in external js file. IE problem. Yes, again and still. small_jam 2008-11-24T21:42:14Z 2008-11-24T21:42:14Z there should be new line between tags and dynamically in previous comment http://stackoverflow.com/questions/315552/javascript-document-write-in-external-js-file-ie-problem-yes-again-and-still/315577#315577 Comment by small_jam on javascript document.write in external js file. IE problem. Yes, again and still. small_jam 2008-11-24T21:41:28Z 2008-11-24T21:41:28Z innerHTML doesn't execute code in &lt;'script&gt; tags dynamically I can't create the script as html code that comes can't be controlled http://stackoverflow.com/questions/82530/svn-over-http-proxy/82587#82587 Comment by small_jam on svn over HTTP proxy small_jam 2008-09-17T12:32:15Z 2008-09-17T12:32:15Z Remote server on windows for SSH I use HTTP tunneling using corkscrew