ciao a tutti
2 domande
1)ma uno con un monitor da 21 pollici solitamente che risoluzione usa?
(è impossibile che usi una 800x 600 vero?)
2) questo javascript che apre la pagina in base alla risoluzione funziona su mac?
<!--
var s_width ='';
var s_height ='';
s_width=screen.width
s_height=screen.height
if (s_width == "640"){
location.href="homepage1024.htm";
}
if (s_width == "800"){
location.href="homepage1024.htm";
}
if (s_width == "1024"){
location.href="homepage1024.htm";
}
if (s_width == "1152"){
location.href="homepage1024.htm";
}
if (s_width == "1280"){
location.href="homepage1024.htm";
}
//-->