Pomoc přepytać

Hladajće so wobšudstwa pomocy. Njenamołwimy was ženje, telefonowe čisło zawołać, SMS pósłać abo wosobinske informacije přeradźić. Prošu zdźělće podhladnu aktiwitu z pomocu nastajenja „Znjewužiwanje zdźělić“.

Dalše informacije

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

  • 2 wotmołwje
  • 1 ma tutón problem
  • 6 napohladow
  • Poslednja wotmołwa wot 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

Wšě wotmołwy (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.