Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

iframes

Status
Not open for further replies.

benrob82

Programmer
Jul 28, 2005
116
GB
Hi can someone help me.

I have created a site with a number of iFrames to embed dynamic pages and often these pages link to other pages.

The problem is that when the user clicks on a link in the frame and the subsequent page also needs to appear in the frame, it does not jump to the top of the page.

Does anyone know how to solve this problem?

Thanks
 
Give the body tag in each of the pages an ID:

Code:
<body id="topOfPage">

and then append a bookmark to the end of the link:

Code:
<a href="somePage.html#topOfPage">

Hope this helps,
Dan

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top