CSS Scroll Position After Javascript "reload()"

  • Follow


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>

0
Reply thegrizzzly (37) 10/27/2006 1:26:52 AM

Raffi a �crit :
> 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:

it is a simple question of html and answer is : use anchors

when calling popup send to it the id of link pressed
then when popup calls the new page in its mother the location mentions 
anchor (the precedent id) to reach

  opener.location = 'balh.htm#' + id;



0
Reply ASM 10/27/2006 1:49:45 PM


1 Replies
419 Views

(page loaded in 0.042 seconds)

Similiar Articles:













7/21/2012 6:16:06 AM


Reply: