Hello,
I have been struggling with below JQuery for add the Navbar background color on scroll, by default or on Scroll on top it should be transparent.
jQuery(document).ready(function($) {
$('.x-navbar-fixed-top').css("background-color", "#fffddf");
if ($( this ).scrollTop() > 200) {
$('.x-navbar-fixed-top').css("background-color", "#CCCCCC").css("transition","0.3s ease-in-out ");
}
});
