We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

Caută ajutor

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Află mai multe

Acest fir de discuție a fost arhivat. Adresează o întrebare nouă dacă ai nevoie de ajutor.

In error console i'm getting this error document.all.languagelist undefined

  • 2 răspunsuri
  • 1 are această problemă
  • 6 vizualizări
  • Ultimul răspuns de macsid

more options

When I have loaded a website some of the submit buttons do not work. i.e selecting a search field then if submit is pressed nothing happens on the scree but in the error console the following appears

document.all.languagelist undefined

When I have loaded a website some of the submit buttons do not work. i.e selecting a search field then if submit is pressed nothing happens on the scree but in the error console the following appears document.all.languagelist undefined

Toate răspunsurile (2)

more options

document.all only works in IE and not in Firefox.

In modern browsers you need to use document.getElementById

document.getElementById("languagelist")

So that site is not compatible with Firefox.

more options

Thank you, very helpful and interesting.