Etsi tuesta

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.

Lue lisää

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

  • 2 vastausta
  • 1 henkilöllä on sama ongelma
  • 6 näyttöä
  • Viimeisin kirjoittaja 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

Kaikki vastaukset (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.