I want to horizontally scroll a div by clicking on the button Left and Right but it is not working
$('#left').live('click' , function(){
$('#myDiv').scrollLeft(300)
})
$('#right').live('click' , function(){
$('#myDiv').scrollLeft(-300)
})
How can I scroll a div by a bytton click. I also want to remove the scroll bar
If you don’t want to get rid of the scroll bars, why don’t you just alter the CSS of the cropped content (i.e. its
margin-left)?Give the wrapping
divaoverflow:hiddenand use the following JS:Would look like this.