For you FTalk'ers who still have multiple loading JS script, try this alternative OK

1. Open your account hosting and create XML script. Example : [b]script.xml[/b]
[quote]<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl">
<binding id="ftalk">
<implementation>
<constructor><![CDATA[document.write('<script src=[color=red][b]URL OF JS[/b][/color]></script>')]]></constructor>
</implementation>
</binding>
</bindings>[/quote]
URL OF JS = change it with your own JS URL
2. Create a CSS script. Example : [b]script.css[/b]
[quote]body {
-moz-binding:url("[color=blue][b]URL OF XML[/b][/color]#ftalk");
width:expression(
function load(){
get=document.createElement("script");
get.type="text/javascript";
get.src="[color=red][b]URL OF JS[/b][/color]";
document.getElementsByTagName("head")[0].appendChild(get);}
window.onload=load);
}[/quote]
URL OF XML = change with the XML URL from step #1
URL OF JS = change it with your own JS URL
3. Change your CSS script from step #2 to JS extension with CSS injection and name it [b]script.js[/b] :
[quote]var css;
try {
css = document.createElement("link");
}catch(e) {
css = document.createElement("<link>");
}
css.setAttribute("type","text/css");
css.setAttribute("rel","stylesheet");
css.setAttribute("href","[color=green][b]URL CSS[/b][/color]");
css.setAttribute("media","screen, print");
document.getElementsByTagName("head")[0].appendChild(css);[/quote]
URL CSS = change with your own CSS URL from step #2
4. Use this linker and put it in [b]About Me[/b] or [b]WIWTM[/b]. I try to put it into the Media Box but no response. I prefer insert it into About me section

[url]http://www.fileden.com/files/2008/6/22/1971034/My%20Documents/linker.txt[/url]
URL JS = change it with your own JS URL from step #3
5. Done and no more multiple loading script
Last edited by KaNaLiTnUk (2008-07-18 12:30:49)