vote up 10 vote down star
4

I want the search box on my web page to display the word "Search" in gray italics. When the box receives focus, it should look just like an empty text box. If there is already text in it, it should display the text normally (black, non-italics). This will help me avoid clutter by removing the label.

BTW, this is an on-page AJAX search, so it has no button.

flag

75% accept rate

12 Answers

vote up 14 vote down check

That is known as a textbox watermark, and it is done via JavaScript.

or if you use jQuery, a much better approach:

link|flag
1  
That second link is broken. This might be similar: digitalbush.com/projects/watermark-input-plugin/… – Michael Haren May 10 at 17:11
vote up 7 vote down

You can add and remove a special CSS class and modify the input value onfocus/onblur with JS:

<input type="text" class="hint" value="Search..." 
  onfocus="if (this.className=='hint') { this.className = ''; this.value = ''; }"
  onblur="if (this.value == '') { this.className = 'hint'; this.value = 'Search...'; }">

Then specify a hint class with the styling you want in your CSS for example:

input.hint {
   color: grey;
}
link|flag
vote up 1 vote down

You could easily have a box read "Search" then when the focus is changed to it have the text be removed. Something like this:

<input onfocus="this.value=''" type="text" value="Search" />

Of course if you do that the user's own text will disappear when they click. So you probably want to use something more robust:

<input name="keyword_" type="text" size="25" style="color:#999;" maxlength="128" id="keyword_" onblur="this.value = this.value || this.defaultValue; this.style.color = '#999';" onfocus="this.value=''; this.style.color = '#000';" value="Search Term">

link|flag
vote up 3 vote down

The best way is to wire up your javascript events using some kind of javascript-library like jQuery or YUI and put your code in an external .js-file.

But if you want a quick-and-dirty solution this is your inline HTML-solution:

<input type="text" id="textbox" value="Search"
    onclick="if(this.value=='Search'){this.value=''; this.style.color='#000'}" 
    onblur="if(this.value==''){this.value='Search'; this.style.color='#555'}" />

Updated: Added the requested coloring-stuff.

link|flag
vote up 1 vote down

Use a background image to render the text :

 input.foo { } 
 input.fooempty { background-image: url("blah.png"); }

then all you have to do is detect value == 0 and apply the right class

 <input class="foo fooempty" value="" type="text" name="bar" />

and the jQuery javascript looks likethis

  jQuery(function($)
  { 
        var target = $("input.foo");
        target.bind("change", function()
        {  
            if( target.val().length > 1 )
            { 
                target.addClass("fooempty");
            }
            else
            {
                target.removeClass("fooempty");
            }
        });
  });
link|flag
vote up 0 vote down

you want to assign something like this to onfocus:

if (this.value == this.defaultValue) this.value = ''
this.className = ''

and this to onblur:

if (this.value == '') this.value = this.defaultValue
this.className = 'placeholder'

(you can use something a bit cleverer, like a framework function, to do the classname switching if you want)

With some CSS like this:

input.placeholder{
    color: gray;
    font-style: italic;
}
link|flag
vote up 0 vote down

When the page first loads, have Search appear in the text box, colored gray if you want it to be.

When the input box receives focus, select all of the text in the search box so that the user can just start typing, which will delete the selected text in the process. This will also work nicely if the user wants to use the search box a second time since they won't have to manually highlight the previous text to delete it.

<input type="text" value="Search" onfocus="this.select();" />
link|flag
vote up 0 vote down

Here's a functional example with Google AJAX Libs cache and some jQuery magic

This would be the CSS:

<style type="text/stylesheet" media="screen">
    .inputblank { color:gray; }  /* class to use for blank input */
</style>

This would would be the Javascript:

<script language="javascript" 
        type="text/javascript" 
        src="http://www.google.com/jsapi">
</script>
<script>
    // Load jQuery
    google.load("jquery", "1");

    google.setOnLoadCallback(function() {
        $("#search_form")
            .submit(function() {
                alert("Submitted. Value= " + $("input:first").val());
                return false;
        });

        $("#keywords")
            .focus(function() {
                if ($(this).val() == 'Search') {
                    $(this)
                    .removeClass('inputblank')
                    .val('');
                }
            })
            .blur(function() {
                if ($(this).val() == '') {
                    $(this)
                    .addClass('inputblank')
                    .val('Search');
                }
            });
    });
</script>

And this would be the HTML:

<form id="search_form">
    <fieldset>
        <legend>Search the site</legend>
            <label for="keywords">Keywords:</label>
        <input id="keywords" type="text" class="inputblank" value="Search"/>
    </fieldset>
</form>

Hope it's enough to make you interested in both the GAJAXLibs and in jQuery.

Cheers, Gus

link|flag
vote up 0 vote down

User AJAXToolkit from http://asp.net

link|flag
vote up 1 vote down

For jQuery users: naspinski's jQuery link seems broken, but try this one: http://remysharp.com/2007/01/25/jquery-tutorial-text-box-hints/

You get a free jQuery plugin tutorial as a bonus. :)

link|flag
vote up 0 vote down

$('input[value="text"]').focus(function(){ if ($(this).attr('class')=='hint') { $(this).removeClass('hint'); $(this).val(''); } });

$('input[value="text"]').blur(function(){ if($(this).val() == '') { $(this).addClass('hint'); $(this).val($(this).attr('title')); } });

link|flag
vote up 1 vote down

This is called "watermark"

I found this jquery plugin: http://plugins.jquery.com/project/jquery-watermark which unlike the first answer, it does not require extra setup (the original answer also needs a special call to before the form is submitted).

link|flag

Your Answer

Get an OpenID
or

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