If i have a form with multiple <input> tags, which all using the same id and name, what will happen if I call :
Code:
alert(document.form.inputName.value);
Is it possible to loop through all these <input> using javascript? And how to do that?
Thanks in advanced.