I would like to insert a descriptive text inside an input element that disappers when the user click on it.
I know it is a very common trick, but I do not know how to do that..
What is the simplest/better solution?
|
A better example would be the SO search button! That's where I got this code from. Viewing page source is a valuable tool. |
|||||||||||
|
|
In my opinion, the best solution involves neither images nor using the input's default value. Rather, it looks something like David Dorward's solution. It's easy to implement and degrades nicely for screen readers and users with no javascript. Take a look at the two examples here: http://attardi.org/labels/ I usually use the second method (labels2) on my forms. |
|||||||
|
|
Use the placeholder attribute. Demo: http://jsbin.com/uqazi |
|||||||||||||
|
|
The common approach is to use the default value as a label, and then remove it when the field gains the focus. I really dislike this approach as it has accessibility and usability implications. Instead, I would start by using a standard element next to the field. Then, if JavaScript is active, set a class on an ancestor element which causes some new styles to apply that:
Then, and also whenever the input loses the focus, I test to see if the input has a value. If it does, ensure that an ancestor element has a class (e.g. "hide-label"), otherwise ensure that it does not have that class. Whenever the input gains the focus, set that class. The stylesheet would use that classname in a selector to hide the label (using text-indent: -9999px; usually). This approach provides a decent experience for all users, including those with JS disabled and those using screen readers. |
|||
|
|
Add an onblur event too. |
|||
|
|
|
When you start typing it will disappear.If empty it will appear again.
Simplest way... |
||||
|
|
|
I've put together solutions proposed by @Cory Walker with the extensions from @Rafael and the one form @Tex witch was a bit complicated for me and came up with a solution that is hopefully error-proof with javascript and CSS disabled. It manipulates with the background-color of the form field to show/hide the label.
View the script in action: http://mattr.co.uk/work/form_label.html |
||||
|
|
|
use this style:
html: javascript:
Just remember to call defaultLabelClean() function before submit form. good work |
|||
|
|
|
Another option is to use a background image - if this is pale enough then it can just be left there permenantly, or you could show/hide it as the user entered text if you wanted:
|
||||
|
|
|
Here is a simple example, all it does is overlay an image (with whatever wording you want). I saw this technique somewhere. I am using the prototype library so you would need to modify if using something else. With the image loading after window.load it fails gracefully if javascript is disabled.
|
|||
|
|