silly javasript question - not working in firefox
I have a simple javascript that works in IE, but just found out it does not work in firefox
It is just a dropdown form field that then populates a textbox with the value of the dropdown box
function displaytime() {
document.Form1.timedisplay.value = document.Form1.Time.options.value;
return;
}
In IE it works, but in Firefox, the timedisplay textbox displays as 'undefined'
Any ideas of how ot define these variables for firefox
thanks!
