Hide div on Scrolling on web page with JQuery and shows back when scroll top of the page
$(window).scroll(function () {
if ($(this).scrollTop() > 200) {
$('.bread').fadeOut();
} else {
$('.bread').fadeIn();
}
});