Skip to content

Instantly share code, notes, and snippets.

@aziz-blr
Created January 21, 2017 10:04
Show Gist options
  • Save aziz-blr/2c2a262cafa3bea0a6941fdbfee0df5a to your computer and use it in GitHub Desktop.
Save aziz-blr/2c2a262cafa3bea0a6941fdbfee0df5a to your computer and use it in GitHub Desktop.
/**
* Sticky header
*/
if ( $body.hasClass( 'header-sticky' ) )
{
var $topbar = $( '#topbar' ),
offset = $topbar.length ? $topbar.height() : 0;
$window.scroll( function()
{ //alert(offset);
$header = $( '#header' ),
if ( $window.scrollTop() >= 60 )
$header.addClass( 'sticky' );
else
$header.removeClass( 'sticky' );
} );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment