Skip to content

Instantly share code, notes, and snippets.

View ell4me's full-sized avatar
😄
I'm fine!

Danil Sennikov ell4me

😄
I'm fine!
View GitHub Profile
function heightDetect() {
$(".main_head").css("height", $(window).height());
};
heightDetect();
$(window).resize(function() {
heightDetect();
});