
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
AmitDiwan has Published 10744 Articles

AmitDiwan
137 Views
The HTML DOM Input Search object is associated with the element with type “search”. We can create and access an input element with type search using the createElement() and getElementById() method respectively.PropertiesFollowing are the properties for the Input Search object −PropertyDescriptionautocompleteTo set or return if the search field should ... Read More

AmitDiwan
127 Views
The HTML DOM Input Search name property is used for setting or returning the name attribute of a reset button. The name attribute helps in identifying the form data after it has been submitted to the server. JavaScript can also use the name attribute to refer form elements for manipulating ... Read More

AmitDiwan
170 Views
The HTML DOM Input Search maxlength property is used for setting or returning the maxlength attribute of the input search field. The maxLength property specifies the maximum number of characters you can type in a search field.SyntaxFollowing is the syntax for −Set the maxLength property −passwordObject.maxLength = integerHere, integer specifies ... Read More

AmitDiwan
144 Views
The HTML DOM Input Search form property is used for returning the form reference that contains the given input search field. If the search field is outside the form then it will simply return NULL. This property is read-only.SyntaxFollowing is the syntax for input search form property −searchObject.formExampleLet us look ... Read More

AmitDiwan
130 Views
The HTML DOM Input Search autofocus property is associated with the HTML element’s autofocus attribute. This property is used for setting or returning if the input search field should automatically be focused when the page loads or not.SyntaxFollowing is the syntax for −Setting the autofocus property −searchObject.autofocus = true|falseHere, ... Read More

AmitDiwan
170 Views
The HTML DOM Input Reset type property is associated with the input element having its type=”reset”. It will always return reset for the input reset element.SyntaxFollowing is the syntax for reset type property −resetObject.typeExampleLet us look at an example for the reset type property − Input reset type ... Read More

AmitDiwan
167 Views
The HTML DOM Input Reset object is associated with the element with type “reset”. We can create and access an input element with type reset by using the createElement() and getElementById() method respectively.PropertiesFollowing are the properties for the Input reset object −PropertyDescriptionautofocusTo set or return if the reset button ... Read More

AmitDiwan
159 Views
The HTML DOM Input Reset name property is used for setting or returning the name attribute of a reset button. The name attribute helps in identifying the form data after it has been submitted to the server.SyntaxFollowing is the syntax for −Setting the name property −resetObject.name = nameHere, name is ... Read More

AmitDiwan
204 Views
The HTML DOM form method property is associated with the method attribute of a form element. This property is used for specifying how the form data should be sent to the server. The address to send data is specified by the action attribute. This property sets or gets the form ... Read More

AmitDiwan
408 Views
The HTML DOM Form length property is used for returning the number of elements that are present inside the form. It is a read-only property.SyntaxFollowing is the syntax of the Form length property −ormObject.lengthExampleLet us look at an example of the Form length property − form{ ... Read More