I can’t get this to work, and don’t understand where the error would be
(function(){
jQuery(window).bind('scrollstart', function(){
$('header').fadeIn('slow', function() {
// Animation complete
});
});
jQuery(window).bind('scrollstop', function(e){
$('header')..fadeIn('slow', function() {
// Animation complete
});
});
})();
All help would be greatly appreciated.
This
$('header').fadeIn('slow', function()not
$('header')..fadeIn('slow', function()