sir lordheinz, may i know what kind of CSS URL should i put here..
(this is the code in the very beginning of the js):
var css = document.createElement("link");
css.type = "text/css";
css.rel = "stylesheet";
css.href = "[b]CSS URL[/b]";
css.media = "screen, print";
document.getElementsByTagName("head")[0].appendChild(css);
should i put the tracker.css or my external.css?????
is that code the same with this code???:
//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();
if it is the same, what code should i use????
the one you gave or can I use this one??????
plz help me.......