You are on page 1of 1

$(document).

ready(function () {
updateContainer();
$(window).resize(function() {
updateContainer();
});
function updateContainer() {
var $containerHeight = $('.speed-wrapper').outerHeight() + $
('.image').outerHeight() + $('.box-wrapper').outerHeight() - 94;
$('.online-box').outerHeight($containerHeight);
}

You might also like