View Single Post
Old 30-06-2004, 07:03   #13 (permalink)
DaiWelsh
Registered User
 
Join Date: Mar 2004
Location: Derby, UK
Posts: 24
combobox.value

is not supported cross-browser afaik, you should get the value of the currently selected option instead, using

combobox.options[combobox.selectedIndex].value

instead, remembering to check that combobox.selectedIndex is > -1 first, otherwise no option is selected.

HTH,

Dai
  Reply With Quote