Reputation:
How to get values from text box in Extended JavaScript and store in temporary variable. e.g.: var textVal=Textbox.val();
Upvotes: 0
Views: 2353
Reputation: 74166
Use the getValue()
method:
Returns the current data value of the field.
Upvotes: 1