I have a next button that when clicked I want it to scroll down the page 517px.
Using the following code (which I have found on another site) I have made a button that does that but I would like it to scroll in a smooth animated way. What would I need to add to do that?
The code I am using is a follows:
function scrollByPixels(x, y)
{
window.scrollBy(x, y);
}
and the following on the actual button:
onclick="javascript:scrollByPixels(0, 517)"
Thanks in advance