Page 1 of 1

**** change hidden field...

Posted: Wed Mar 21, 2007 1:34 pm
by dexter
I want to have it so it's<input type="hidden" name="action" value=""><input type="submit" value="Edit" ****="DO THIS">I want DO THIS to change the value of action to "edit"How would I do this?

Posted: Thu Mar 22, 2007 8:58 am
by Lixas
<input type="hidden" name="action" id="need_to_change" value="">
<input type="submit" value="Edit" ****="****.getElementById('need_to_change').value='edit';">

This should work

Posted: Mon Mar 26, 2007 12:33 pm
by dexter
very nice, thanks man...