User small_jam - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T10:29:59Zhttp://stackoverflow.com/feeds/user/15752http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/315552/javascript-document-write-in-external-js-file-ie-problem-yes-again-and-still1javascript document.write in external js file. IE problem. Yes, again and still.small_jam2008-11-24T21:31:53Z2009-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><script></code> tag with document.write inside it with <code><script></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><div id="bannerPlaceHolder"+id></div></code> -- so here I will need to put banner content later on</p>
<p>Page rendered and before <code></body></code> tag I put <code><script>banners.load()</script></code> banners.load method do this for each item in scope array:</p>
<pre><code>document.write('<div id="codeHolder'+id+'">');
document.write(bannerCode);
document.write('</div>');
</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#3160670Answer by small_jam for How to convert a literal object into user defined object in javascript?small_jam2008-11-25T01:06:16Z2008-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 < 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#3156350Answer by small_jam for Javascript Reflectionsmall_jam2008-11-24T21:54:06Z2008-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-proxy1svn over HTTP proxysmall_jam2008-09-17T12:23:56Z2008-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#825970Answer by small_jam for svn over HTTP proxysmall_jam2008-09-17T12:30:22Z2008-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#315577Comment by small_jam on javascript document.write in external js file. IE problem. Yes, again and still.small_jam2008-11-24T21:42:14Z2008-11-24T21:42:14Zthere should be new line between tags and dynamically in previous commenthttp://stackoverflow.com/questions/315552/javascript-document-write-in-external-js-file-ie-problem-yes-again-and-still/315577#315577Comment by small_jam on javascript document.write in external js file. IE problem. Yes, again and still.small_jam2008-11-24T21:41:28Z2008-11-24T21:41:28ZinnerHTML doesn't execute code in <'script> tags
dynamically I can't create the script as html code that comes can't be controlledhttp://stackoverflow.com/questions/82530/svn-over-http-proxy/82587#82587Comment by small_jam on svn over HTTP proxysmall_jam2008-09-17T12:32:15Z2008-09-17T12:32:15ZRemote server on windows
for SSH I use HTTP tunneling using corkscrew