input
она появляется и применяются CSS стили.#contact-form
класс .is-focused
, то скрипт работаетinput
и скрипт не видит этот класс.if( $("#contact-form").hasClass("is-focused") ){
console.log("some-text")
}
/*Navbar fixed menu when scrolling*/
$(function(){
var menu = $('#menu');
var tophead = $('.top-head');
$(window).scroll(function(){
if ($(this).scrollTop() > 15){
menu.addClass('fixed-menu');
tophead.css({'max-width' : '85%'});
}
else {
menu.removeClass('fixed-menu');
tophead.css({'max-width' : ''});
}
})
});
script.js
fixed-menu.js