Hi,
See below:

Wade Preston Shearer wrote:
On 8 Jul 2009, at 18:56, Wade Preston Shearer wrote:

I am submitting a form with javascript like this…

document.formname.submit();


I need the name of the form to be a variable though. Is that possible? Meaning, that "formname" should be a variable instead of the actual name of the form.

And of course, I find the answer right after reaching out for help.

eval('document.' + name + '.submit()');


There's no need to use eval (which should be avoided when possible for
various reasons). You can do this:

document.forms[name].submit();

Alvaro





_______________________________________________

UPHPU mailing list
[email protected]
http://uphpu.org/mailman/listinfo/uphpu
IRC: #uphpu on irc.freenode.net

Reply via email to