Hi every1.
I got one question.
I have my HTML page. I have a .js file . It is a just a combobox with a few values. I inlcude the .js file in my HTML page like <Script language = "javascript" Src = "jsfile.js"> .
The trick is it ACTUALLY works. I see the combobox everything. BUT how do I refernence the values/ onchange event of the combo box.
In VBScript it works by using (in the HTML page)
<Script ....>
Sub Combo1_onchange()
msgbox combo1.value
End sub
</Script>
But how do you do it in Javascript. I tried using the onchange in the .js file but to no avail
Thanks
