I am currently using overflow:scroll for a table of data. The problem is that everytime I make a selection on the row, a submit is fired and the list scrolls back to the top. Is there a way to get the scroll to return to it's last position? There are hundreds of rolls so scrolling down every time is very inconvenient.
This is the code I'm using for the scroll:
<div id="myDiv" style="border:2px solid #C0C0C0; margin:4px; position:relative; left:10px; width:1200px; height:450px; overflow:scroll">
<%@ include file="/myRecords.jspf" %>
</div>
Thanks!
Start Free Trial