|
#1
|
|||
|
|||
|
1) Script Title: Ajax Tabs Content Script (v 2.2)
2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...tent/index.htm 3) Describe problem: I'm using a div at the top of the page which is being loaded from a list of links at the bottom of the page ie: <li><a href="external.htm" rel="countrycontainer">Tab 2</a></li> The problem is that since this is a list of approx 20 links the top div is not visible on the page. Is there some way to ref an anchor to shift the page up upon loading the div? Thanks |
|
#2
|
||||
|
||||
|
You can try adding inside the tab in question, specifically, its LI element, a code such as:
Code:
<li><a href="#" class="selected" rel="#default">Tab 1</a></li> <li onClick="this.scrollIntoView()"><a href="external2.htm" rel="countrycontainer">Tab 2</a></li> <li><a href="external3.htm" rel="countrycontainer">Tab 3</a></li>
__________________
DD Admin |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
|
|