Specifies the object upon which
the action will occur.
SyntaxReference_Syntax.target = "ObjectName | Reference_Syntax | URL"
Values
Type
|
Values
|
String
|
A valid string representing the name of
a form design object, a reference syntax expression, or a URL where data
is sent.
The value of this property is expected to be compatible
with the value of the targetType property.
For instance, it would be considered an error for the targetType property
to reference a page area and the target property
to reference a content area, or vice versa.
|
JavaScriptxfa.event.target = "click";
- or -
Subform1.breakAfter.targetType = "contentArea";
Subform1.breakAfter.target = "#ContentArea2";
FormCalcxfa.event.target = "click"
- or -
Subform1.breakAfter.targetType = "contentArea"
Subform1.breakAfter.target = "#ContentArea2"
|
|
|