Reputation: 1981
Can I know client computer(browser) properties such as screen width when page requests? I need it beckause I dont want to use jquery on client side to set neccesary changes adopting to client browser.
Upvotes: 2
Views: 113
Reputation: 40150
Unfortunately, no; without some client information wrangling, you can not get information such as screen size from the browser. PageLoad
would basically give you access to the basic request information, none of which will contain any information about browser/window size unless you have had client script collect and submit such information
Upvotes: 3