I see this all over the web, but was wondering if anyone has the JavaScript code for the EASIEST way to show input value on blur, but hide in on focus.
Thanks!
|
|
I see this all over the web, but was wondering if anyone has the JavaScript code for the EASIEST way to show input value on blur, but hide in on focus. Thanks!
|
||||||
|
|
|
HTML
Javascript (unobtrusive)
|
||||||||
|
|
|
This is what I use on my blog. Just go there and check out the source code behind.
Your input field should look something like this:
|
||
|
|
|
|
The simplest approach I know of is the following:
|
||
|
|
|
|
If you don’t care about valid HTML, you use the More reading:
And google. ;-) The solution is similar to the one Josh Stodola posted, but it’s more flexible and universal. |
||||
|
|
|
This answer was adopted from Josh Stodola, but was slightly modified to do the following:
My code looks like this:
Not sure if this is the safest or the correct way to do it, but it sure looks nice! Check it out here. If you know of a better and/or safer way, please let me know! Thanks, in advance, and of course thanks to Josh Stodola for the code. :) |
||||
|