Fluid Sidebar - Resizing Example

by bizamajig

HTML

<div data-role="page">
    <div data-role="content">
        <p>Some Content</p>
    </div>
</div>

JavaScript

$(window).bind('resize', function () {
    console.log('width = ' + $('[data-role="page"]').width());
    console.log('height = ' + $('[data-role="page"]').height());
}).trigger('resize');