i have multiple forms on a page generated dynamically. Im assigning a unique id to each form example form1, form2, form3 etc. Each form contains a hidden field one with name of id and next with name of action.
im doing an onclick="document.getElementById('form1').submit();" or whatever form id i want submitted. The problem is it isnt passing the correct hidden field id number. In FF4 it passes the last forms id val and in safari its passing the first id val?
Whats am i doing wrong? Probably dumb and simple but im not seeing it.