The DOM Input Search name Property in HTML DOM is used to set or return the value of name attribute of a search field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all.
Syntax:
- It returns the Input search name property.
searchObject.name
- It is used to set the Input search name property.
searchObject.name = name
Property Values: It contains a single value name which defines the name of the search field.
Return Value: It returns a string value which represents the name of the search field.
Example-1: This example illustrates how to return Input search name property.
html
<!DOCTYPE html>
< html >
< head >
< title >
Input Search name Property
</ title >
< style >
h1 {
color: green;
}
h2 {
font-family: Impact;
}
body {
text-align: center;
}
</ style >
</ head >
< body >
< h1 >GeeksforGeeks</ h1 >
< h2 >Input Search name Property</ h2 >
< form id="myGeeks">
< input type="Search"
id="test"
name="myGeeks"
placeholder="Type to search..">
</ form >
< br >
< br >
< button ondblclick="Access()">
click here
</ button >
< p id="check"
style="font-size:24px;
color:green;">
</ p >
< script >
function Access() {
// return input search name property
var s = document.getElementById(
"test").name;
document.getElementById(
"check").innerHTML = s;
}
</ script >
</ body >
</ html >
|
Output:
Before Clicking On Button:
After Clicking On Button:
Example-2: This Example illustrates how to set the Property.
html
<!DOCTYPE html>
< html >
< head >
< title >
Input Search name Property
</ title >
< style >
h1 {
color: green;
}
h2 {
font-family: Impact;
}
body {
text-align: center;
}
</ style >
</ head >
< body >
< h1 >GeeksforGeeks</ h1 >
< h2 >Input Search name Property</ h2 >
< form id="myGeeks">
< input type="Search"
id="test"
name="myGeeks"
placeholder="Type to search..">
</ form >
< br >
< br >
< button ondblclick="Access()">
click here
</ button >
< p id="check"
style="font-size:24px;
color:green;">
</ p >
< script >
function Access() {
// setting input search name property
var s = document.getElementById(
"test").name = "HelloGeeks";
document.getElementById(
"check").innerHTML =
"The value of the name attribute was changed to "
+ s;
}
</ script >
</ body >
</ html >
|
Output:
Before Clicking On button:
After Clicking On Button:
Supported Browsers: The browser supported by DOM input search name Property are listed below:
- Google Chrome 5 and above
- Edge 12 and above
- Firefox 4 and above
- Opera 10.6 and above
- Safari 5 and above
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
25 Aug, 2022
Like Article
Save Article