Here is my code:
...
Setting hidden input to: <dsp:valueof param="tabname"/>
<input name="tabname" type="hidden" value='<dsp:val ueof param="tabname"/>'/>
</dsp:form>
hidden input set to:<script language="JavaS cript"> document.write( document.getEle mentById("tab_s witchRefreshFor m").elements.ta bname.value);</script><BR/>
Now when I'm in IE, everything works fine and the output is as follows:
Setting hidden input to: moreDetails
hidden input set to:moreDetails
However in firefoc the output is:
Setting hidden input to: moreDetails
hidden input set to:features
Huh? "features" is another valid entry for this field, but I feel that this code is pretty straight forward. is the value attribute for hidden fields broken for firefox?!??
...
Setting hidden input to: <dsp:valueof param="tabname"/>
<input name="tabname" type="hidden" value='<dsp:val ueof param="tabname"/>'/>
</dsp:form>
hidden input set to:<script language="JavaS cript"> document.write( document.getEle mentById("tab_s witchRefreshFor m").elements.ta bname.value);</script><BR/>
Now when I'm in IE, everything works fine and the output is as follows:
Setting hidden input to: moreDetails
hidden input set to:moreDetails
However in firefoc the output is:
Setting hidden input to: moreDetails
hidden input set to:features
Huh? "features" is another valid entry for this field, but I feel that this code is pretty straight forward. is the value attribute for hidden fields broken for firefox?!??
Comment