Posted by Raffi on 10/27/06 01:26
Hi,
I have an application screen with a CSS scroll area. Users click links
in the scroll area which open small popup windows to enter data. When
the data is submitted, the popup reloads the opener to update the page
and closes itself. However when the parent page is updated, the div
scrolls back to the top. Is there a way to have CSS remember the
vertical scroll position and go back to it when the page is reloaded?
Similar to document.body.scrollTop in Javascript. Here's the relevant
portion of the code:
<STYLE TYPE="text/css">
div.scroll
{
height: 400px;
width: 960px;
overflow: auto;
border: 1px solid #0000ff;
background-color: #77ddcc;
padding: 8px;
}
</STYLE>
.............
<div class="scroll">
...application data...
...application data...
...application data...
...application data...
</div>
[Back to original message]
|