I am trying to make a simple tooltip kind of input placeholder using css. But today things won't work out as I expected.
#formulier input:focus::-webkit-input-placeholder:after {
content: attr(tip) "test"; /**/
position:absolute;
right:0;
display:inline-block;
color:red;
}
The content output for "test" works fine, but I can't get the attr(tip).. Please check out the small demo I've created here (CHROME AND SAFARI ONLY DUE WEBKIT)
http://jsbin.com/ApIvawO/5/edit
Thanks in advance for helping me out :D