dylanmcleod
9/30/2016 - 12:00 AM

Checks Browser Height - Adds CSS

Checks Browser Height - Adds CSS

$(window).resize(function(){
    var bohi = $(window).height();
    if(bohi < 440) {
        $("#content").css("top","20px");
    } else {
        $("#content").removeAttr('style');
    }
});