html
html
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Get Screen Resolution Using JavaScript</title>
</head>
<body>
<button type="button" onclick="getResolution();">Get Resolution</button>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
function getResolution() {
alert("Your screen resolution is: " + screen.width + "x" + screen.height);
}
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run