Skip to content

Instantly share code, notes, and snippets.

@gagimilicevic
Last active November 11, 2016 08:34
Show Gist options
  • Save gagimilicevic/c0fabee3546046fae8fcbfee49fb8e08 to your computer and use it in GitHub Desktop.
Save gagimilicevic/c0fabee3546046fae8fcbfee49fb8e08 to your computer and use it in GitHub Desktop.
Scroll to element with specific class - jQuery
$(document).ready(function () {
$( all_items ).each( function( index ) {
if( $( this ).attr( 'class' ) == 'active' ) {
$('html, body').animate({
scrollTop: $( this ).offset().top - 120
}, 500);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment