Поэтому возник вопрос что делаю не так? Подскажите пожалуйста.
Последняя версия js.
function changeCss() {
var w = screen.width;
var h = screen.height;
if (w >= '1920' )
{
document.getElementById("stylesheet").href="big_style.css";
}
else
{
if (w > '1600' && w < '1920')
{
document.getElementById("stylesheet").href="medium1600_style.css";
}
else
{
if (w >= '1280' && w < '1600')
{
document.getElementById("stylesheet").href="medium_style.css";
}
else
{
if (w >= '800' && w < '1280')
{
document.getElementById("stylesheet").href="small_style.css";
}
else { document.getElementById("stylesheet").href="mini_style.css";}
};
};
};
};
ID на стили поставила.
Запускаю вот так
<script type="text/javascript">
window.onload = changeCss;
</script>
_____________
_Моё_