[quote=okacybernet]Credits: Feruzz and Angel de ville
Generator by :Balikita
GENERATOR
hope you understand thats

[/quote]
Thanks for the generator oka...very convenient...

[quote=KaNaLiTnUk]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 : script.xml
<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl">
<binding id="ftalk">
<implementation>
<constructor><![CDATA[document.write('<script src=URL OF JS></script>')]]></constructor>
</implementation>
</binding>
</bindings>
URL OF JS = change it with your own JS URL
2. Create a CSS script. Example : script.css
body {
-moz-binding:url("URL OF XML#ftalk");
width:expression(
function load(){
get=document.createElement("script");
get.type="text/javascript";
get.src="URL OF JS";
document.getElementsByTagName("head")[0].appendChild(get);}
window.onload=load);
}
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 script.js :
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","URL CSS");
css.setAttribute("media","screen, print");
document.getElementsByTagName("head")[0].appendChild(css);
URL CSS = change with your own CSS URL from step #2
4. Use this linker and put it in About Me or WIWTM. I try to put it into the Media Box but no response. I prefer insert it into About me section
http://www.fileden.com/files/2008/6/22/ … linker.txt
URL JS = change it with your own JS URL from step #3
5. Done and no more multiple loading script

[/quote]
very nice tutorial buddy....i admired it...