How to change an HTML5 input's placeholder color with CSS?
Placeholder in a hint for the element, but I want to change the input’s placeholder color. The default color is fine, but isn’t appealing. I would like to change it using jQuery.
The following is my HTML form code:
<form action="/cgi-bin/html5.cgi" method="get">
Enter email : <input type="email" name="newinput" placeholder="disabled"/>
<input type="submit" value="submit" />
</form>