bhubbard
11/4/2016 - 5:42 PM

Load a section to the full window size

Load a section to the full window size

/*-------------------------------------------------*/
/* =  Full-window section
/*-------------------------------------------------*/

var windowHeight = jQuery(window).height(),
    topSection = jQuery(' .EXAMPLE-CLASS-NAME ');
topSection.css('height', windowHeight);

jQuery(window).resize(function() {
    var windowHeight = jQuery(window).height();
    topSection.css('height', windowHeight);
});