[quote=janjan6190]I'm experiencing a null page sometimes.
It happens alternately. What i mean is when i reload the page, it goes null. When reloaded again, its ok. Reloaded again, it goes null. Is anyone kind enough to help me out?
Clearing private data maybe disregarded with this matter because same thing happened when I viewed my profile on a different computer.
@refresh/reload
Can we cut out the CSS link from the code u gave that u say that is stable enough for u?
Its because my css in FF is different from IE..[/quote]
then use the if... else... statement...
so that you can have different codes...
[quote][b]if[/b] (navigator.appName == "Microsoft Internet Explorer") {
var jscript = document.createElement("script");
jscript.type = "text/javascript";
jscript.src = "[b]DIRECT LINK OF YOUR [color=blue]IE[/color] JS FILE HERE[/b]";
document.getElementsByTagName("head")[0].appendChild(jscript);
var cascade = document.createElement("link");
cascade.type = "text/css";
cascade.rel = "stylesheet";
cascade.href = "[b]DIRECT LINK OF YOUR [color=blue]IE[/color] CSS FILE HERE[/b]";
cascade.media = "screen, print";
document.getElementsByTagName("head")[0].appendChild(cascade);
}
[b]else[/b] {
var jscript = document.createElement("script");
jscript.type = "text/javascript";
jscript.src = "[b]DIRECT LINK OF YOUR [color=red]Fx[/color] JS FILE HERE[/b]";
document.getElementsByTagName("head")[0].appendChild(jscript);
var cascade = document.createElement("link");
cascade.type = "text/css";
cascade.rel = "stylesheet";
cascade.href = "[b]DIRECT LINK OF YOUR [color=red]Fx[/color] CSS FILE HERE[/b]";
cascade.media = "screen, print";
document.getElementsByTagName("head")[0].appendChild(cascade);
}[/quote]
still can save as .swf
btw... i use to have that null page too... but since i host
my own linker it's gone...