I am currently using a background image on my inputs to show a default value. When the input field is focused, the background disappears. However, Firefox auto-completes my fields with data if the user has chosen to save it and the default background image is still visible. How can I hide the background image when the field has been autocompleted by a browser?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
There might be some crazy CSS selector that would allow you to do this, but you could use JavaScript to get rid of the background if there's text in the input:
...Or whatever. Something similar. |
|||
|
|
|
You can turn autocomplete off either on the whole form or on a specific input:
If you want to add a listener to this event, Firefox 4+ will fire an "oninput" event when autocompleted. |
|||
|
|