In a "table of contents"-ish area we see:

<tr>
<td><a href="#r">R</a></td>
<td><a href="#s">S</a></td>
<td><a href="#tu">T-U</a></td>
<td><a href="#v">V</a></td>
<td><a href="#wxyz">W-X-Y-Z</a></td>
</tr>

And then (somewhat predictably) we find this:

<h1 id="r"></h1>
-----something here having to do with "r"
<h1 id="s"></h1>
-----something here having to do with "s"

For some reason, the link "S" doesn't bring you to the empty header - any idea why??

link|improve this question
1  
uhh...It's empty? – Switz Nov 16 '11 at 3:04
Is there, perhaps, more than one element with an id="s" on the page (or, a name="s")? – Sean Vieira Nov 16 '11 at 3:06
It would help to know which browser(s) you have tested. I had no problem with this on Chrome. – DocMax Nov 16 '11 at 3:08
can you create a jsfiddle that reproduces this issue? I have been unable to: jsfiddle.net/VVkcc/3 – Gary.S Nov 16 '11 at 3:15
feedback

2 Answers

It should work unless it just appears as if it doesn't because your page might not have enough content to actually scroll down...

check it out in action here:

http://jsfiddle.net/tgfem/

link|improve this answer
feedback

Try using the name attribute either along with or instead of ID attribute. Here is an example from W3Schools.com:

<a href="#C4">See also Chapter 4</a>
<h2><a name="C4">Chapter 4</a></h2>
link|improve this answer
w3fools – Marc B Nov 16 '11 at 3:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.