The function below works fine in FF, IE and Opera. But it does not work in Safari. Is there a work-around for this problem?
thanks,
JAS
function loadStyles() {
var oLink = document.createElement('link')
oLink.href = './CSS/myStyles.css';
oLink.rel = 'stylesheet';
oLink.type = 'text/css';
oLink.media = 'screen';
document.body.appendChild(oLink);
}
thanks,
JAS
function loadStyles() {
var oLink = document.createElement('link')
oLink.href = './CSS/myStyles.css';
oLink.rel = 'stylesheet';
oLink.type = 'text/css';
oLink.media = 'screen';
document.body.appendChild(oLink);
}