Hallo,
if (screen.width > 1000) {
location.href="1024.html";
}
else {
location.href="800.html";
}
Da jetzt das iPhone draußen ist, wird man wohl öfter das hier stattdessen sehen:
~~~css
@media handheld and (max-width: 20em), screen and (max-width: 20em) {
#sidebar1 {
float: left;
width: 6em;
}
#sidebar2 {
width: 100%
}
#main {
width: 14em;
}
}
@media handheld and (min-width: 20em), screen and (min-width: 20em) {
#sidebar1 {
float: left;
width: 25%;
}
#sidebar2 {
width: 25%;
float: right;
}
#main {
width: 50%;
}
}
Naja, oder so ähnlich zumindest.
Jeena