This is done automatically for every browser except chrome..
I'm guessing I have to specifically target chrome.
Any solutions?
If not with css then jquery?
Kind regards
|
|
EDIT:
|
|||||||||||
|
|
Firefox 15 is also doing this now. To expand on @casey-chu's CSS solution above:
|
|||||||||||
|
|
have you tried placeholder attr?
-EDIT- i see, try this then, on
|
|||||||||||
|
|
Here is a CSS-only solution (for now, only works in WebKit):
|
|||||||||
|
|
Toni's answer is good, but I'd rather drop the ID and explicitly use "input", that way all inputs with placeholders get the behavior:
Note that
|
|||
|
|
|
I like to package this up in the name space and run on elements with the "placeholder" attribute...
|
|||
|
|
|
To further refine Wallace Sidhrée's code sample:
This ensures that each input stores the correct placeholder text in the data attribute. |
|||
|
|
|
|||
|
|
|
Demo is here: jsfiddle Try this :
|
||||
|
|
I like the css approach spiced with transitions. On Focus the placeholder fades out ;) Works also for textareas. Thanks @Casey Chu for the great idea.
|
|||
|
|