Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
// Read dimensions var w = $('#sidebar').width(); var h = $('#sidebar').outerHeight(true); // includes margin console.log('Width: ' + w + ', Height: ' + h); // Set dimensions $('#hero').width($(window).width()); $('#hero').height(400); // Viewport dimensions var vpW = $(window).width(); var vpH = $(window).height(); console.log('Viewport: ' + vpW + 'x' + vpH); // Document total height console.log('Page height: ' + $(document).height());
Result
Open