I have some code that passes a value from a select box into a textbox.
It seems to work in IE but not in netscape.
<script language="javascript">
function value_exchange(form) {
form.rate2.value = form.quickrate.options[form.quickrate.selectedIndex].value;
}
</script>
i tried using document.form.selectedIndex etc. but that didn't seem to work either.
any suggestions Thanks...
It seems to work in IE but not in netscape.
<script language="javascript">
function value_exchange(form) {
form.rate2.value = form.quickrate.options[form.quickrate.selectedIndex].value;
}
</script>
i tried using document.form.selectedIndex etc. but that didn't seem to work either.
any suggestions Thanks...