Hi,
I would like to have my navbar add a box-shadow after scroll on the homepage. Is this possible? I found this code on codepin but the javascript is not working.
$(window).scroll(function() {
if ($(window).scrollTop() > 10) {
$(’#navBar’).addClass(‘floatingNav’);
} else {
$(’#navBar’).removeClass(‘floatingNav’);
}
});
Any idea how to make the javascript work with Pro theme?
Thanks!