HTML
--------
<div id="design_start">
Your content here
</div>
<button onclick="goto_top_position();">Move to design area</button>
JS
------
function goto_top_position()
{
$('html, body').animate({
scrollTop: $("#design_start").offset().top
}, 1000);
}
This code will take the scroll to the div position with animation
--------
<div id="design_start">
Your content here
</div>
<button onclick="goto_top_position();">Move to design area</button>
JS
------
function goto_top_position()
{
$('html, body').animate({
scrollTop: $("#design_start").offset().top
}, 1000);
}
This code will take the scroll to the div position with animation