|
Posted by Darko on 07/31/07 09:34
On Jul 30, 4:51 pm, "Jonathan N. Little" <lws4...@centralva.net>
wrote:
> 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 STUDIOhttp://www.LittleWorksStudio.com
Yes, I know, but as far as I can remember, some browsers (was it IE6?
I can't remember) had problems with just ids. So I ended with
giving both id and name to h2, if that won't work, I will make it
<a name="..."></a>
<h2 id="...">...</h2>
Hopefully that'll work. Thanks
[Back to original message]
|