I have this div element:(just for illustrative purposes)
is there a way to set the amount of pixel to scroll in this div when the user clicks the up or down arrows in the scrollbar?. I could program a small javascript code in order to satisfy this needing, however, I'd like to make it fast and simple, so I hope there is at least an object property to set the amount of scrolling.(I have enough programming pending on other parts of one site)
Code:
<div style="width:50px; height: 15px; overflow: auto;"> 1<br /> 2<br /> 3<br /> 4<br /> 5<br /> 6<br /> </div>
Comment