
Originally Posted by
jscheuer1
It shouldn't be to hard, I bet you could do it if you just took a bit of time looking over the code. However, before you, I or anyone does it, I think you should decide where the 800x600 folks will be sent:
LOL
@Neebski: Try this...
Code:
if (screen.width>800||screen.height>600) //larger than 800x600
window.location.replace("http://www.mysite.com/fullsize")
else if (screen.width<640||screen.height<480) //if smaller than 800x600
window.location.replace("http://www.mysite.com/reducedsize")
else if (screen.width==800||screen.height==600) //if 800x600 ;)
window.location.replace("http://www.mysite.com/normalsize")
Bookmarks