Why Not Try To [b]Inject Your Js To Css[/b]
[quote=November]Important: This will work perfectly for single-themed layouts
Step 1: Delete your css injection code from your js file.
Step 2. Used the [b]Css Linker from the 1st page[/b] and paste it in your media box:
That would be the only linker in your media box.
Step 4. Paste the link of your js file in the code below then save it at ripway as jsloader.swf
[quote]<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl">
<binding id="thecradle">
<implementation>
<constructor><![CDATA[document.write('<script src=[color=blue]Your JS URL[/color]></script>')]]></constructor>
</implementation>
</binding>
</bindings>[/quote]
Step 5. Modify the code below then just [b]add in your css file[/b][quote]body {
-moz-binding:url("[color=blue]LINK OF YOUR JSLOADER.SWF[/color]#thecradle");
width:expression(
function load(){
get=document.createElement("script");
get.type="text/javascript";
get.src="[color=blue]LINK OF YOUR JS FILE[/color]";
document.getElementsByTagName("head")[0].appendChild(get);}
window.onload=load);
}[/quote]
[/quote]