I don't know if this has a special name for it, but is there a nice easy way to set default text in an input field which disappears on focus and reappears on blur if the textbox is empty?
|
|
the word is WATERMARK
I encourage to use a plugin, unless you have plenty of time developing and testing. There are many issues and side-effects to take notice of when writing this code.
|
||||
|
|
|
You can use the new HTML5 placeholder attribute. Edit: update to use some more HTML5/jQuery hotness, HTML5 data storage.
This will work on all modern browsers. And gracefully degrade in IE. However for IE you'll have to use javascript.
|
|||||||||||||||||||||
|
|
The functionality is known as watermark , and can be acheived in many ways, one of them is
This will work for email textbox. |
|||
|
|
|
Here is solution.
|
|||||
|
|
you can try this: using the title attribute to store the default text
}); |
|||
|
|
|
You can use this plugin (I'm an co-author) https://github.com/tanin47/jquery.default_text It clones an input field and put it there. It works on IE, Firefox, Chrome and even iPhone Safari, which has the famous focus problem. This way you do not have to be worried about clearing input field before submitting. OR If you want to HTML5 only, you can just use attribute "placeholder" on input field |
|||
|
|
|
Here is my approach (with jQuery):
|
|||
|
|