Monday, May 13, 2024
 Popular · Latest · Hot · Upcoming
118
rated 0 times [  120] [ 2]  / answers: 1 / hits: 18617  / 13 Years ago, mon, january 9, 2012, 12:00:00

I want to get live screen resolution of web browser as user RESTORE DOWN OR MAXIMIZE without refreshing the page.


More From » css

 Answers
25

Are you using jQuery? If yes, then the code below should work



$(window).resize(function(){
var windowWidth = $(window).width();
var windowHeight = $(window).height();
// windowWidth & windowHeight are automatically updated when the browser size is modified
});

[#88142] Sunday, January 8, 2012, 13 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
karolinab

Total Points: 644
Total Questions: 98
Total Answers: 117

Location: Vanuatu
Member since Mon, Dec 7, 2020
4 Years ago
;