We found this in our code (we haven\'t written it by our selfs, and we are new to programmng), can anyone explain what this.value means and how you change it?
&l
this.value represents the selected value.
Example:
function getComboA(sel) { var value = sel.value; } Select combo Text1 Text2 Text3
The above example gets you the selected value OnChange event.