quote:
Originally posted by raceprouk
JavaScript to check the resolution on page load, then redirect based on the result? I don't know if you can do that.
yea that'll work, if they have javascript enabled and if not you can have a link to manually select the screen resolution
something like
code:
<SCRIPT language="JavaScript">
<!--
if ((screen.width>=1024) && (screen.height>=768))
{
window.location="highres.html";
}
else
{
window.location="lowres.html";
}
//-->
</SCRIPT>