A Text object provides a field on a form in which the user can enter data and is created with every instance of an HTML <INPUT> tag with the type attribute set to "text". These objects are then stored in the elements array of the parent form and accessed using either the name defined within the HTML tag or an integer (with '0' being the first element defined, in source order, in the specified form).
Syntax: Object.constructor
This specifies a function to create an object's property and is inherited by all objects from their prototype.
Syntax: object.defaultValue[ = "newdefaultvalue"]
This property sets or returns a string indicating the initial value of the Text object. The value of this property initially reflects the value between the start and end <TEXT> tags. Use of the defaultValue property, which can be done at any time, will override the original value.
Syntax: object.form
This property returns a reference to the parent Form of the Text object.
Syntax: object.name
This property sets or returns the value of the Text object's name attribute.
Syntax: Object.prototype.name = value
This allows the addition of properties and methods to any object.
Syntax: object.type
Every element on a form has an associated type property. In the case of a Text object, the value of this property is always "text".
Syntax: object.value
This property sets or returns the Text object's value attribute. This is the text that is actually displayed in the text field and can be set at any time with any changes being immediately displayed.
Syntax: object.blur( )
This method removes the focus from the specified Text object.
Syntax: Object.eval(string)
The eval method is deprecated as a method of Object, but is still used as a high level function. It evaluates a string of JavaScript in the context of an object.
Syntax: object.focus( )
This method gives focus to the specified Text object.
Syntax: object.handleEvent(event)
This method calls the handler for the specified event.
Syntax: object.select( )
This method is used to select and highlight the entire text that is currently in the input field. When the user starts typing, they will replace whatever is currently there. Used in conjunction with the focus method, this makes it easy to prompt the user for input and places the cursor in the correct place.
Syntax: Object.toSource()
The toSource method returns a literal representing the source code of an object. This can then be used to create a new object.
Syntax: Object.toString()
The toString method returns a string representing a specified object.
Syntax: Object.unwatch(property)
This method removes a watchpoint set for an object and property name with the watch method.
Syntax: Object.valueOf()
This method returns a primitive value for a specified object.
Syntax: Object.watch(property, handlerfunction)
This method adds a watchpoint to a property of the object.