$(document).ready(function(){
$("#right_arrow").click(function(e) {
var scrollleftvar = $(window).scrollLeft();
e.preventDefault()
$("body").scrollLeft(scrollleftvar + 50);
});
});
Hi, I am trying to revive or loosen the incremental scrollable eleft given above, but struggling a bit, any help would really be appreciated, thanks
source
share