In error console i'm getting this error 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
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)
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.
Thank you, very helpful and interesting.