1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-06 23:44:43 -04:00
elinks/test/ecmascript/width.html
Witold Filipczyk fa49422f88 [document] Programming by coincidence.
scroll3 works, width.html works, accesskey still does not
2021-06-27 13:01:19 +02:00

20 lines
325 B
HTML

<!DOCTYPE html>
<html>
<body>
<p>Click the button to display the width of your screen, in pixels.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = "Width: " + screen.width + "px";
document.getElementById("demo").innerText = x;
}
</script>
</body>
</html>