Oct 2, 2001 #1 rry2k Programmer Jun 28, 2001 678 US HI, Is there a way to check which resolution a user is at and set the page accordingly? Thanks..Russ
Oct 2, 2001 #2 GIGN Programmer Oct 6, 2000 1,082 NZ screen.width or height will give you that stuff. Upvote 0 Downvote
Oct 3, 2001 Thread starter #3 rry2k Programmer Jun 28, 2001 678 US Hi, Can you be more specific with an example of code. Thanks..Russ Upvote 0 Downvote
Oct 3, 2001 1 #4 secretsquirrel Programmer Mar 22, 2001 202 GB you could use it something like... if(screen.width < abc && screen.height < xyz) { do something } else { do something else } Upvote 0 Downvote
you could use it something like... if(screen.width < abc && screen.height < xyz) { do something } else { do something else }
Oct 3, 2001 Thread starter #5 rry2k Programmer Jun 28, 2001 678 US that did the trick thanks..Russ Upvote 0 Downvote