Is it a bug?

  • Thread starter Paul Gorodyansky
  • Start date
L

Lasse Reichstein Nielsen

Paul Gorodyansky said:
The following page's JavaScript does not work in Netscape 7.1/
Mozilla 1.3+ (that is, an image does NOT appear if one chooses
a keyboard layout):
http://www.microsoft.com/globaldev/reference/keyboards.aspx

Is it a bug in Netscape/Mozilla JavaScript implementation?

Why would you think it is a bug in the browser, and not in the javascript
code itself? Which is more likely?

It is a bug in the Javascript code. It is an accident if it works in
any browser (IE is known to be very accident prone).

More precisely, the error is in the line:
onChange="chooseKeyboard(document.choose.state.options[state.selectedIndex].value)"

Some browsers allow you to refer to named forms as properties of the
document area. It is still not as safe an assumption as writing
document.forms['choose']
Some browsers also allow toy to refer to form elements as properties
of the form. It is safer to use the "elementes" collection.

Very few browsers allow you to access named form elements as properties
of the global object. That is what the above line tries:
state.selectedIndex
There is no global variable called "state". What should be writte is:

onchange="var select=document.forms['choose'].elements['state'];
chooseKeyboard(select.options[select.selectedIndex].value);"

Then it will work in other browsers than IE.
/L
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,046
Latest member
Gavizuho

Latest Threads

Top