artcabot
09-24-2003, 05:49 PM
I'm working on a form processing Perl script written by someone else. One section has a series of radio buttons that I need to get a value out of. The other developer is validating the form using Javascript and, at one point, already has a routine that determines that one of the buttons is checked (formName.item[i].checked = true). I'd like to grab the value at that point (formName.item[i].value) and send it out to the Perl script in which the Javascript routine is embedded.
If my Perl variable is, say, $MyVariable, how do I pass the Javascript information (formName.item[i].value) back to $MyVariable.
Thanks for the help; I know this is pretty basic, but I don't do much work in these two languages.
If my Perl variable is, say, $MyVariable, how do I pass the Javascript information (formName.item[i].value) back to $MyVariable.
Thanks for the help; I know this is pretty basic, but I don't do much work in these two languages.