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!

link|improve this question

78% accept rate
Huh? What do you mean by show? What exactly are you trying to do? – Ian Elliott Jul 3 '09 at 5:20
So the input will have for example "Search..." inside of it, and when you go click on the input, it would go blank. I believe I already have the answer, but thanks anyway Ian! =] – Michal Kopanski Jul 3 '09 at 5:57
feedback

4 Answers

This always worked for me:

<input 
    type="text" 
    value="Name:"
    name="visitors_name" 
    onblur="if(value=='') value = 'Name:'" 
    onfocus="if(value=='Name:') value = ''"
 />
link|improve this answer
feedback

This is what I use on my blog. Just go there and check out the source code behind.

function displaySearchText(text){
    var searchField = document.getElementById('searchField');
    if(searchField != null)
        searchField.value = text;
}

Your input field should look something like this:

<input id='searchField' name='q' onblur='displaySearchText("Search...");' onfocus='displaySearchText("");' onkeydown='performSearch(e);' type='text' value='Search...'/>
link|improve this answer
feedback

The simplest approach I know of is the following:

<input 
    name="tb" 
    type="text" 
    value="some text"
    onblur="if (this.value=='') this.value = 'some text'" 
    onfocus="if (this.value=='some text') this.value = ''"  />
link|improve this answer
feedback

If you don’t care about valid HTML, you use the placeholder attribute. It will work out of the box on a Safari, and you can add some unobtrusive JS to mimic this behavior in other browsers.

More reading:

And google. ;-)

The solution is similar to the one Josh Stodola posted, but it’s more flexible and universal.

link|improve this answer
I guess not to care about valid HTML is never good, isn't it? Moreover just optimizing for one browser... – Juri Jul 3 '09 at 5:47
Validator is only a tool. You can ignore it’s output as long as you know what you’re doing. And optimizing for the upcoming standard isn’t so bad after all :) – Maciej Łebkowski Jul 3 '09 at 8:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.