JS Full Window Height

// Image section height.
var windowHeight = $( window ).height();

$( ‘.image-section’ ) .css({‘height’: windowHeight +’px’});

$( window ).resize(function(){

var windowHeight = $( window ).height();

$( ‘.image-section’ ) .css({‘height’: windowHeight +’px’});

});

Similar Posts