HTML | DOM Input Color form Property
The DOM Input Color form Property in HTML DOM is used to return the reference to the form containing the color picker is. It is read-only Property that returns a form object on success.
Syntax:
colorObject.form
Example: Below Program illustrates the use of Input Color form Property.
<!DOCTYPE html> < html > < head > < title > HTML DOM Input Color form Property </ title > </ head > < body style = "text-align:center;" > < h1 > GeeksForGeeks </ h1 > < h2 > HTML DOM Input Color form Property </ h2 > < form id = "myGeeks" > < label > Select your favorite color: </ label > < input type = "color" value = "#009900" name = "Geek_color" id = "color" > </ form > < button onclick = "myGeeks()" > Click Here! </ button > < p id = "GFG" style="color:green; font-size:24px;"> </ p > < script > function myGeeks() { var x = document.getElementById( "color").form.id; document.getElementById( "GFG").innerHTML = x; } </ script > </ body > </ html > |
chevron_right
filter_none
Output:
Before Clicking On Button:
After Cicking On Button:
Supported Browsers: The browser supported by DOM input color form property listed below:
- Google Chrome
- Internet Explorer 10.0 +
- Firefox
- Opera
- Safari