Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Setting a Div height to the window viewport size Re: Setting a Div height to the window viewport size

#113040
mmoustafa
Member

With jQuery

**$(window).resize(function() {

$(‘#my-div’).css(‘height’, window.innerHeight+’px’);

});**