Forum Moderators: open
In the header is:
<script type="text/javascript">
function preloadimgs ()
{
document.write('<link href="css/preload_aboutus.css" rel="stylesheet" type="text/css" ></style>');
}
</script> And then:
<body id="general" onload="preloadimgs()"> What's wrong with my approach?
function preloadimgs (){
var l=document.createElement("link");
l.rel="stylesheet";
l.type="text/css";
l.href="css/preload_aboutus.css";
document.getElementByTagName("head")[0].appendChild(l);
}