Action
The Action tag is used with more sophisticated gift orders that collect order information through more than one page. It is a hidden tag
with no value. The value is set through form buttons' click actions. The valid actions are:
- "request modify donor"
- "modify donor"
- "request add recipients"
- "add recipients"
- "request modify recipient#"
- "modify recipient#"
- "delete recipient#"
- "confirm" or "checkout"
- "submit"
Where # is a number to distinguish between the different recipients. If no action is specified, the default action is "confirm".
Value's Maximum Length:
NA
Typical Syntax:
<script language=javascript><!--
function setAction (form, act)
{
form.action.value = act;
}
//--></script>
.
.
.
<input type=hidden name=action>
.
.
.
<input type=button value="OK" onClick="setAction(form,'add recipients');form.submit();return true">