You are viewing a post by rdvg3283. View all 2098 posts in [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb.
Can i use this code sir???
[quote]//Css injection
function injectcss() {
if(window.cssinjected == undefined) {
cssinjected = 1;
var css = document.createElement("link");
css.setAttribute("type","text/css");
css.setAttribute("rel","stylesheet");
css.setAttribute("href","CSS URL");
css.setAttribute("media","screen, print");
document.getElementsByTagName("head")[0].appendChild(css);
}
}injectcss();[/quote]
instead of this one:
[quote]var css = document.createElement("link");
css.type = "text/css";
css.rel = "stylesheet";
css.href = "CSS URL";
css.media = "screen, print";
document.getElementsByTagName("head")[0].appendChild(css);[/quote]