I have the following code that seems to scroll a div on click all the way to the left. I am wondering if:
$('.leftArrow').click(function(event){ event.preventDefault(); $('.innerWrapper').animate({scrollLeft:'+=1500'},500); });
Simple as that.