This post was most recently updated on July 31st, 2024
Save below code as html file and run it with IE or chrome browser. After running this code it will provide you the screen resolution.
1 2 3 4 5 6 7 8 9 10 11 |
<html> <body> <button onclick="displayScrnResolution()">Click to Check Screen Resolution</button> function displayScrnResolution() { window.alert("Your screen resolution is: " + screen.height + 'x' + screen.width); } </body> </html> |