How do I empty a textfield (html form) if I click in it to write something.
Pseudo Code:
On click #searchform
Erase String in #searchform
|
How do I empty a textfield (html form) if I click in it to write something. Pseudo Code:
|
|||||||||||
|
|
|||
|
|
I'd recommend you using the HTML5 placeholder attribute. For example:
This will work with most of the newest browsers and for older ones there is a workaround jQuery plugin. Here is the link to the placeholder plugin. And then you simply call:
|
|||||||
|
|
If you are wanting to clear a default value from a field such as "Enter Search Term" I use the following code:
and then on my input field I add:
So it would be:
|
|||||||||||||||
|