4

How do you test for, for example, and android browser in Jquery?

Cheers.

1 Answer 1

1

Do you want to test for a mobile browser or one with a small screen?

In javascript I would write

var isSmallScreen = ((screen.width * screen.width) + (screen.height * screen.height)) <= ((640*640)+(480*480)); 

to see if the screen is smaller than something like 640 x 480.

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.