Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>My Example</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> <script> $( function() { $( "button" ).click( function() { var msg = ""; msg = msg + "<p>Width: " + $( window ).width(); msg = msg + "<p>Height: " + $( window ).height(); $( "#msg" ).html( msg ); }); }); </script> <button>Get Window Dimensions</button> <div id="msg"></div>
Preview