<title>My Example</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
$( "button" ).click( function() {
msg = msg + "<p>Width: " + $( "#resizeMe" ).width();
msg = msg + "<p>Height: " + $( "#resizeMe" ).height();
msg = msg + "<p>Resize me, then 'Get Dimensions' again...";
$("#resizeMe").prepend(msg);
<button>Get Dimensions</button>
<p>Does not include padding, margins, and borders.</p>