hey, ive been trying to have a default value in a text input, then with jQuery, when you "onfocus" the textbox, it makes the text black (default a light gray), and deletes the default value. I think you know what im talking about, so do you guys know how to accomplish this?
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.
|
|
javascript
See working example: |
||||
|
|
|
The jquery watermark plugin allows you to achieve the desired effect. |
|||
|
|
Have a CSS class of Example Usage: http://www.jsfiddle.net/2S9hW/ |
|||
|
|
|
What I'm currently using for inputs taking City Values. On focus it removes the value. On blur (unfocused) it returns the default value but informs the user it is required. css
html
jquery
|
||||
|
|
|
Your basiclly creating what the placeholder attribute of the HTML5 text element supports. So you should just use the placeholder attribute and then check if the browser supports the placeholder functionality:
|
|||
|
|