Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Die Funktionalität dieser Website ist durch Wartungsarbeiten eingeschränkt, die Ihr Erlebnis verbessern sollen. Wenn ein Artikel Ihr Problem nicht löst und Sie eine Frage stellen möchten, können Sie unsere Gemeinschaft über @FirefoxSupport auf Twitter, /r/firefox oder Reddit fragen.

Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

"a name" html tag not functional across frames

  • 4 Antworten
  • 1 hat dieses Problem
  • 1 Aufruf
  • Letzte Antwort von kennyg92

more options

I am using a link in one frame to reference the "a name" tag in another frame. Works fine in IE, Chrome, Opera but not in Firefox.

I realize that the hashtag "#" in a URL does not work in Firefox, for some unexplained reason, but I can't remove the hashtag in the originating URL as the target frame and named location will not be processed correctly.

In frame 1 here is the code pointing to the URL in frame 2: <a href="right-body.htm#1000">1000</a>

In frame 2 (right-body.htm) here is the code for the target link: <a name="1000"></a>

Removing the hashtag (#) wil render the link unusable.

Any thoughts/suggestions?

Thanks!

I am using a link in one frame to reference the "a name" tag in another frame. Works fine in IE, Chrome, Opera but not in Firefox. I realize that the hashtag "#" in a URL does not work in Firefox, for some unexplained reason, but I can't remove the hashtag in the originating URL as the target frame and named location will not be processed correctly. In frame 1 here is the code pointing to the URL in frame 2: &lt;a href="right-body.htm#1000"&gt;1000&lt;/a&gt; In frame 2 (right-body.htm) here is the code for the target link: &lt;a name="1000"&gt;&lt;/a&gt; Removing the hashtag (#) wil render the link unusable. Any thoughts/suggestions? Thanks!

Geändert am von cor-el

Alle Antworten (4)

more options

You probably simplified the code for posting. Do you have an explicit target attribute in the tag? Otherwise, I would expect the link in frame 1 to target frame 1 instead of frame 2.

If you check Firefox's Browser Console, do you see any related warnings or errors? You can launch the console by pressing Ctrl+Shift+j. Then to clear debris, I suggest clicking the Clear button before switching over to Firefox, reloading the page and trying the link again.

more options

Yes the source and target frames are different. Here's the more correct code:

In frame1 here is the code pointing to the URL in frame2: <a href="right-body.htm#1000" target="frame2">1000</a>

In frame2 (right-body.htm) here is the code for the target link: <a name="1000"></a>

Still hoping for a solution to this, although realizing it may not be there.

more options

Is there a live example online to play with?

I noticed in the MDN article that the name attribute is considered "obsolete" in HTML5, and that we should switch to using the id attribute for internal navigation. Not sure whether this is affecting your page. Do you have the old HTML 4.01 DOCTYPE at the top of the page?

more options

No, nothing online at this moment that others can play with. May post a link sometime later.

Have tried both of these to no avail. !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"

and "quirks mode" !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

Interesting that Firefox is the only browser I can't get the code to work with. Seems to me to be a Mozilla issue as other engines seems to translate things correctly.

Appreciate the help/suggestions BTW!!

Geändert am von kennyg92