Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <button onclick="myFunction()">show the window size</button>
  5. <p id="demo"></p>
  6. <script>
  7. function myFunction() {
  8. var w = window.innerWidth;
  9. var h = window.innerHeight;
  10. document.getElementById("demo").innerHTML = "Width: " + w + "<br>Height: " + h;
  11. }
  12. </script>
  13. </body>
  14. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement