I have a php page and I am trying to get it to change css sheets based on window resolution so far I have this but it doesnt work:
if you want to see the page itself:
Test Site
Code:
<head>
<title>test Page</title>
<script type="text/javascript">
function RedirectCSS(){
var h;
switch(screen.width) {
case '800':
h = "index800.css";
break;
default:
h = "index1280.css";
break;
}
document.getElementsByTagName("link")[0].href = h;
}
</script>
</head>
<body onload="RedirectCSS();">
if you want to see the page itself:
Test Site