Placeholders.js
Placeholders.js copied to clipboard
Respect input::placeholder:after css selector in IE9
I want to colorize the last letter of placeholders for required fields, after
works in modern browsers, but not with the polyfill in IE9.
<input type-"text" value="" placeholder="name" />
input::placeholder:after {
color: red;
content: "*";
opacity: 1;
}