Here's what I'm trying to do.
First when a radio button is clicked the value of a hidden field is changed to reflect the value of the radio button. I can then use the hidden field to pull data from.
I can do that using this:
Code: Select all
function send_hidden(str, val)
{
document.Form1.dingle_berry.value = val;
}
onClick='send_hidden(this.name, this.value)'Has anybody problem before and attempted this solution before?
Is there a better solution?
Does anybody know of an existing script I can snag?
Thanks