Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a form input that has sample search keywords inside. When the user focuses the input the text disappears, if there is nothing in the input the text reappears when unfocused. That's all good and works well but what I'd like to do is have the sample text grayed out and then have the normal solid color when the user is actually typing.

Below is the code I'm currently using. Any help would be great!

$(function() {
$('input').each(function() {
    $.data(this, 'default', this.value);
}).focus(function() {
    if (!$.data(this, 'edited')) {
        this.value = "";
    }
}).change(function() {
    $.data(this, 'edited', this.value != "");
}).blur(function() {
    if (!$.data(this, 'edited')) {
        this.value = $.data(this, 'default');
    }
});
});
share|improve this question

3 Answers

up vote 4 down vote accepted

Like this?

$(function() {
    $('input').each(function() {
        $.data(this, 'default', this.value);
    }).css("color","gray")
    .focus(function() {
        if (!$.data(this, 'edited')) {
            this.value = "";
            $(this).css("color","black");
        }
    }).change(function() {
        $.data(this, 'edited', this.value != "");
    }).blur(function() {
        if (!$.data(this, 'edited')) {
            this.value = $.data(this, 'default');
            $(this).css("color","gray");
        }
    });
});

http://jsfiddle.net/afcpb/

Simply sets it to gray initially, then black whenever focused and back to gray if the default text is set again.

share|improve this answer
This is perfect, thank you. – Clayton C Jun 17 '11 at 17:29

http://api.jquery.com/css

Use .css() to add color style to your input

share|improve this answer

i'd suggest using a plugin like labelOver instead of messing around with the text and style of the input!

http://remysharp.com/2007/03/19/a-few-more-jquery-plugins-crop-labelover-and-pluck/#labelOver

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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