How To Add Placeholder In Html
How to fix placeholder value for input type date in HTML 5 ?
The placeholder attribute does not work with the input type Date, and then place any value equally a placeholder in the input type Date. You can apply the onfocus="(this.type='appointment') inside the input filed. Because yous are required to have a custom placeholder value for input type "date", and you have a drop-down calendar where the user can select the date from.
Syntax:
onfocus="(this.type='date')"
Below instance illustrates the above approach:
Example 1:
<!DOCTYPE html>
<
html
>
<
head
>
<
title
>
Placeholder value for
input type="Date"
</
title
>
</
head
>
<
torso
style
=
"text-align:centre;"
>
<
h1
mode
=
"colour:greenish;"
>GeeksforGeeks</
h1
>
<
h4
>Placeholder value for input type="Date"</
h4
>
Starting Date:
<
input
type
=
"text"
placeholder
=
"MM/DD/YYYY"
onfocus
=
"(this.blazon='date')"
>
Ending Appointment:
<
input
type
=
"text"
placeholder
=
"MM/DD/YYYY"
>
</
body
>
</
html
>
Output:
Annotation: After clicking on the left field, we get the dd/mm/yyyy box, and we get the calendar drop-downwardly menu later clicking on it once again. This is because the input box is actually a "text" input, only on clicking on information technology (i.eastward. focusing on it), nosotros get the information type input. Merely the right field is normal text input filed.
Example 2: When y'all lose the focus on the date the date field changes back to a text field.
<!DOCTYPE html>
<
html
>
<
head
>
<
championship
>
Placeholder value for input blazon="Engagement"
</
championship
>
</
head
>
<
body
fashion
=
"text-marshal:center;"
>
<
h1
style
=
"color:green;"
>GeeksforGeeks</
h1
>
<
h4
>Placeholder value for input blazon="Engagement"</
h4
>
Starting Date:
<
input
type
=
"text"
placeholder
=
"MM/DD/YYYY"
onfocus
=
"(this.type='engagement')"
onblur
=
"(this.type='text')"
>
Ending Date:
<
input
type
=
"text"
placeholder
=
"MM/DD/YYYY"
>
</
body
>
</
html
>
Output:
HTML is the foundation of webpages, is used for webpage development by structuring websites and spider web apps.Y'all can learn HTML from the basis up past following this HTML Tutorial and HTML Examples.
How To Add Placeholder In Html,
Source: https://www.geeksforgeeks.org/how-to-set-placeholder-value-for-input-type-date-in-html-5/
Posted by: hickscolithat.blogspot.com
0 Response to "How To Add Placeholder In Html"
Post a Comment