I nvr use IE and do not know where the issue is coming in. The code I have all uses variable variables for form names. For example I have the user id followed by an "_" followed by something like hMon. The result is "1_hMon". When the onclick triggers the code will calculate the hours. This completely works in Firefox but does nothing in IE.
I am not a versed programmer in JS and have never user anything besides the document model, like "getvaluebyid". I would like to stick to this if possible so I do not have a total rewrite.
Thanks in advance.
K
Code:
//These 2 lines are not connected.
var hmon = document.sedit[my_varH + "hMon"].value;
document.sedit[my_varH].value = x.toFixed(2) ;
I am not a versed programmer in JS and have never user anything besides the document model, like "getvaluebyid". I would like to stick to this if possible so I do not have a total rewrite.
Thanks in advance.
K