Skip to content

Instantly share code, notes, and snippets.

View Darkrogua's full-sized avatar
🏠
Working from home

Dmitrenko Artem Darkrogua

🏠
Working from home
  • October-studio
  • Russia
View GitHub Profile
$(document).ready(function() {
function heightDetect() {
$(".main_head").css("height", $(window).height());
};
heightDetect();
$(window).resize(function() {
heightDetect();
});