Search Support

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.

Learn More

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

  • 2 replies
  • 1 has this problem
  • 6 views
  • Last reply by 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

All Replies (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.