All,
Is their a way of iterating thru each tag within a form and returning the
value given in the id property, by that I mean the below html would return
the values idBoxOne, idBoxTwo, idBoxThree from the FormXX form.
<form name="FormXX" method="post" action="default .htm">
<input id="idBoxOne" name="bxOne" type="text">
<input id="idBoxTwo" name="bxTwo" type="text">
<input id="idBoxThree " name="bxThree" type="text">
</form>
Up to this point I've only used JavaScript to change CSS properties,
innerHTML and outerHTML so I'm rather new to the game.
Any help is always appreciated.
CES
Is their a way of iterating thru each tag within a form and returning the
value given in the id property, by that I mean the below html would return
the values idBoxOne, idBoxTwo, idBoxThree from the FormXX form.
<form name="FormXX" method="post" action="default .htm">
<input id="idBoxOne" name="bxOne" type="text">
<input id="idBoxTwo" name="bxTwo" type="text">
<input id="idBoxThree " name="bxThree" type="text">
</form>
Up to this point I've only used JavaScript to change CSS properties,
innerHTML and outerHTML so I'm rather new to the game.
Any help is always appreciated.
CES
Comment