<input type="text" id="sample" placeholder="hai"/>
Here how to change the color of placeholder using textbox "id"?
<input type="text" id="sample" placeholder="hai"/>
Here how to change the color of placeholder using textbox "id"?
You have to use css to do this:
input#hai::-webkit-input-placeholder {
color: red !important;
}
input#hai:-moz-placeholder { /* Firefox 18- */
color: red !important;
}
input::-moz-placeholder { /* Firefox 19+ */
color: red !important;
}
input#hai:-ms-input-placeholder {
color : red !important;
}