Skip to content

Instantly share code, notes, and snippets.

@zainaali
Created August 16, 2021 06:43
Show Gist options
  • Save zainaali/8168093a302d9e9858807832f81ba20b to your computer and use it in GitHub Desktop.
Save zainaali/8168093a302d9e9858807832f81ba20b to your computer and use it in GitHub Desktop.
Scroll within a div with jQuery animate() function
function scrollingdiv(parentid, id){
$("#"+parentid).animate({scrollTop: $("#"+id).position().top}, 800, 'swing');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment