x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
4
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
5
<script>
6
  $( function() {
7
    $( "button" ).click( function() {
8
      var msg = "";
9
      msg = msg + "<p>Width: " + $( window ).width();
10
      msg = msg + "<p>Height: " + $( window ).height();
11
      $( "#msg" ).html( msg );
12
    });
13
  });
14
</script>
15
16
<button>Get Window Dimensions</button>
17
<div id="msg"></div>