Oct 2, 2001 #1 rry2k Programmer Joined Jun 28, 2001 Messages 678 Location 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 Joined Oct 6, 2000 Messages 1,082 Location NZ screen.width or height will give you that stuff. Upvote 0 Downvote
Oct 3, 2001 Thread starter #3 rry2k Programmer Joined Jun 28, 2001 Messages 678 Location US Hi, Can you be more specific with an example of code. Thanks..Russ Upvote 0 Downvote
Oct 3, 2001 1 #4 secretsquirrel Programmer Joined Mar 22, 2001 Messages 202 Location 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 Joined Jun 28, 2001 Messages 678 Location US that did the trick thanks..Russ Upvote 0 Downvote