jQuery( document ).ready( function( $ ) { //for adding class on scroll jQuery(window).scroll(function(){ var scroll = jQuery(window).scrollTop(); if (scroll > 150){ jQuery('header.site-header').addClass('opacity'); } else { jQuery('header.site-header').removeClass('opacity'); } }); });