Sök i support

Akta dig för supportbedrägerier: Vi kommer aldrig att be dig att ringa eller skicka ett sms till ett telefonnummer eller dela personlig information. Rapportera misstänkt aktivitet med alternativet "Rapportera missbruk".

Läs mer

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

  • 2 svar
  • 1 har detta problem
  • 6 visningar
  • Senaste svar av 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

Alla svar (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.