So this is the current code I have
$(document).ready(function() { $(\'.abouta\').click(function(){ $(\'html, body\').animate({scrollTop:308}, \'s
if you want to scroll just only some div, can use the div id instead of 'html, body'
$('html, body').animate(...
use
$('#mydivid').animate(...