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!

Drop down select takes me to a specific part of another page 1

Status
Not open for further replies.

kensington43

Technical User
Nov 29, 2005
50
US
I have an auto select in my Drop down where a selection takes the user to another page and it works.

Anyway to take the user to a specific part of the page where instead of it going to the top of the page it will take me to a specific part of the page?
Code:
<script>
function goToOtherPageMethod()
{
   document.location.href=document.formName.myField[document.formName.myField.selectedIndex].value;
}
</script>
<form>
<select name = "myField" onchange="return goToOtherPageMethod()">
<option value="thePage.cfm" name="here">thePage</option>
</form>

thePage.cfm
Code:
<html>
<body>
lots of info here...<br><br>
<a href = "here"></a>
</body>
</html>
 
You need an inpage anchor:

Code:
<body>
  <p>Lorem ipsum dolor sit amet, </p>
  <p>Lorem ipsum dolor sit amet, </p>
  <p [COLOR=red]id="foo"[/color]>Lorem ipsum dolor sit amet, </p>
</body>

You then need to add "#foo" to the end of your jump URL: e.g. [ignore][/ignore]#foo

---
Marcus
better questions get better answers - faq581-3339
accessible web design - zioncore.com
 
Remember though kensington43 that moving to a bookmark this way will only be properly effective if the page is very long.
If say you have 4 screens full of info on the page and your bookmark is in the middle then clicking a link with that bookmark will cause that page to load and scroll so that the bookmark is at the top of the page.
If the position you are going to is very close to the bottom the screen cannot scroll far enough to put the bookmarked section at the top of the page.

I have seen people try and use bookmarks like this in the past and they will have 4 or 5 bookmarks on a very short page that does not have enough length to scroll so that the selected section ends up at the top. In that case it is difficult to know exactly which section they were trying to get to, it is just somewhere on the current viewable screen.


Stamp out, eliminate and abolish redundancy!
 
Manarth a Star for you. I've been writing HTML for 11 years and always thought to have an in page link you needed an anchor tag. I.E. <a name = "anchor"> for an in page link. Never knew you could use ID. Merry Christmas!!!

Glen
 
Glen,

I was curious about that, too... so went hunting around the HTML 4 specs, :-

W3C said:
Destination anchors in HTML documents may be specified either by the A element (naming it with the name attribute), or by any other element (naming with the id attribute).

Interesting!

Dan

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
It works great in IE but Netscape 7 doesnt go to the anchor part of thePage.cfm. It seems to only partially take me to the correct part of the page where it seems to go too high and only partially show the correct section. Please advise how I can correct it with NS7?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top