Овај сајт ће имати ограничену функционалност док га будемо ажурирали у циљу побољшања вашег искуства. Ако неки чланак не реши ваш проблем и желите да поставите питање, на располагању ће вам бити наше заједнице подршке @FirefoxSupport на Twitter-у и /r/firefox на Reddit-у.

Претражи подршку

Избегните преваре подршке. Никада од вас нећемо тражити да зовете или шаљете поруке на број или да делите личне податке. Пријавите сумњиве радње преко „Пријавите злоупотребу” опције.

Сазнај више

<a href="#Contents">Contents</a> linking to <a name="#Contents"></a> in a standard HTML web page doesn't work. It does in Internet Explorer. What's wrong with F

  • 3 одговорa
  • 1 има овај проблем
  • 2 прегледа
  • Последњи одговор послао wesleytilson

more options

I have several pages with internal links that work in Internet Explorer, but when tested in Firefox, they don't. Is there a security setting preventing this. Is there anyone out there for whom internal links work. Here is a link to a page I'm talking about:

http://thebooksofscripture.com/beowulf-by-gummere

Thanks.

I have several pages with internal links that work in Internet Explorer, but when tested in Firefox, they don't. Is there a security setting preventing this. Is there anyone out there for whom internal links work. Here is a link to a page I'm talking about: http://thebooksofscripture.com/beowulf-by-gummere Thanks.

Изабрано решење

You have a link in this format:

<a href="#exactIdOrName">

In your document, your id or name attributes need to exactly match the text after the hash mark:

<a name="exactIdOrName">

Compare yours. Notice the extra character in your id or name attributes that breaks the link in Firefox?

Some other browsers have an attitude of "we know what the author meant" but Firefox is more literal. Remove the hash signs from your name attributes (not your href attributes) and try again.

Прочитајте овај одговор са објашњењем 👍 0

Сви одговори (3)

more options

See this Validation Report for that webpage. https://validator.w3.org/nu/?doc=http%3A%2F%2Fthebooksofscripture.com%2Fbeowulf-by-gummere%2F

Probably relates to error#7 and below. The name attribute is obsolete. Consider putting an id attribute on the nearest container instead.

more options

Одабрано решење

You have a link in this format:

<a href="#exactIdOrName">

In your document, your id or name attributes need to exactly match the text after the hash mark:

<a name="exactIdOrName">

Compare yours. Notice the extra character in your id or name attributes that breaks the link in Firefox?

Some other browsers have an attitude of "we know what the author meant" but Firefox is more literal. Remove the hash signs from your name attributes (not your href attributes) and try again.

more options

id attribute Thanks.