jQuery scroll to target element:
$(function(){
$("#click").click(function (){
$('html, body').animate({
scrollTop: $('.target').offset().top
}, 2000);
});
});
jQuery scroll to target element:
$(function(){
$("#click").click(function (){
$('html, body').animate({
scrollTop: $('.target').offset().top
}, 2000);
});
});