|
Posted by Jonathan N. Little on 07/30/07 14:51
Darko wrote:
> On Jul 30, 2:37 pm, "rf" <r...@invalid.com> wrote:
>> "Darko" <darko.maksimo...@gmail.com> wrote in message
>>
>> news:1185797418.664931.231360@l70g2000hse.googlegroups.com...
>>
>>
>>
>>> Hi,
>>> I have a problem with <a name="..."></a>, <h2 id="...">...</h2>, or
>>> whatever I put it like. This is the scenario:
>>> I page 2.html, I have the following code:
>>> <a name="video"></a>
>>> <h2>Video</h2>
For what it is worth, rather than use the named empty anchor, just set
the H2 element's ID to the fragment:
<h2 id="video">Video</h2>
then link <a href="2.html#video">video</a> should work. Why you are
currently having problem one can only guess because we cannot *see* what
you are doing....
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|