I want to stop animation of showing 'black header'.
If you scroll couple of times fast you'll notice that animation is triggered and the black header will "flash"
$(window).scroll(function() {
if ($(window).scrollTop() > 200) {
$(".prim").fadeIn(250);
}
else {
$(".prim").fadeOut(250);
}
});
//Sticky bar responsive fix
$(window).resize(function(){
var width = $(window).width();
if( width > 1024 && $(window).scrollTop() > 190 ){
$(".prim").fadeIn(250);
}
else{
$(".prim").css('display', 'none');
}
});