I am in the process of devloping an browser application that relies on using hidden form objects to pass parameters. I was wondering if anyone had an idea on what would be the best way to dynamically change these hidden objects with a mouse click on a button prior to a form submit. I was considering using DHTML, but I am not sure if this is the best option.
I would want to do something like this:
change:
<input type="hidden" name="mode" value="browse">
to:
<input type="hidden" name="mode" value="query">
by clicking a form button.
Let me know if anyone has any ideas on the best way to do this.
I would want to do something like this:
change:
<input type="hidden" name="mode" value="browse">
to:
<input type="hidden" name="mode" value="query">
by clicking a form button.
Let me know if anyone has any ideas on the best way to do this.