**** change hidden field...

Any problem with javascript can be discussed here.
Locked
dexter
Posts: 32
Joined: Fri Mar 09, 2007 1:18 pm

**** change hidden field...

Post 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?


Lixas
Posts: 750
Joined: Wed Feb 16, 2005 4:21 pm

Post 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
Image
dexter
Posts: 32
Joined: Fri Mar 09, 2007 1:18 pm

Post by dexter »

very nice, thanks man...
Locked