Skip to content

Instantly share code, notes, and snippets.

View rxbot420's full-sized avatar

rxbot420 rxbot420

View GitHub Profile
function heightDetect() {
$(".main_head").css("height", $(window).height());
};
heightDetect();
$(window).resize(function() {
heightDetect();
});