Hello Why does my Script not work? I created two header, one should hide and the other show after 1980px of scroll which works! But then i want it to hide and show again after 2500px so basicallythat its just like in the beginning with out any scroll anymore.
$(window).scroll(function() {
    if ($(this).scrollTop()>1980)
     {
        $('#navBar').fadeOut();
     }
    
    else if ($(this).scrollTop()>2500)
    {
           $('#navBar').fadeIn();
    }
    else
     {
      $('#navBar').fadeIn();
            
     }
 }); 
    