I am trying to obtain horizontal scroll using buttons.
I have a container which has several divs stacked horizontally and I want to scroll through them using the but
$('#right-button').click(function() {
event.preventDefault();
$('#content').animate({
scrollLeft: "+=200px"
}, "slow");
});
$('#left-button').click(function() {
event.preventDefault();
$('#content').animate({
scrollLeft: "-=200px"
}, "slow");
});
Edit, to explain... you need to set its scroll left position.
DEMO PLUNKR