how to make a scroll horizontally button in html
//Using jQuery code $('#right-button').click(function() { event.preventDefault(); $('#content').animate({ marginLeft: "+=200px" }, "slow"); }); $('#left-button').click(function() { event.preventDefault(); $('#content').animate({ marginLeft: "-=200px" }, "slow"); });