user1752759
user1752759

Reputation: 643

Grab the users screen-size/browser resolution

How would I be able to grab the users screen-size or browser resolution (width only) when viewing my webpage, preferably with javaScript/jQuery or PHP and output the results?

Upvotes: 0

Views: 1761

Answers (1)

Anthony Hatzopoulos
Anthony Hatzopoulos

Reputation: 10537

window.innerWidth will get you the browser width.

screen.width will get you the monitor's resolution.

Here's an example: http://jsbin.com/abomod/1/edit

Upvotes: 1

Related Questions