Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a freely available jQuery plugin that changes placeholder behavior to match HTML5 spec?

Before Focus
chrome unfocused placeholder

On Focus Good (Safari)
safari focused placeholder

On Focus Bad (Chrome, Firefox)
chrome focused placeholder

You can what your browser does with this simple fiddle.

HTML5 draft spec says:

User agents should present this hint to the user, after having stripped line breaks from it, when the element's value is the empty string and/or the control is not focused (e.g. by displaying it inside a blank unfocused control and hiding it otherwise).

The "/or" is new in current draft so I suppose that's why Chrome and Firefox don't support it yet. See WebKit bug #73629, Chromium bug #103025.

share|improve this question
1  
Your fiddle works for me (placeholder doesn't disappear on focus) on Chrome 17.0.963.12. – ThinkingStiff Dec 26 '11 at 2:19
@ThinkingStiff, Chrome says 16.0.921 is the last version available for me (might be because of localization or different channel). Anyway, I'm looking for a JS fix that will work for older versions. – Dan Abramov Dec 26 '11 at 2:26
@ThinkingStiff where did you find Chrome 17? Do they provide nightlies? – canon Dec 30 '11 at 15:09
1  
@antisanity I'm on the dev channel: dev.chromium.org/getting-involved/dev-channel – ThinkingStiff Dec 30 '11 at 20:01
1  
I have recently updated my Placeholders.js polyfill to support this. Works in pretty much all browsers, including IE6, and has no dependency on jQuery. – James Allardice Jul 26 '12 at 10:48
show 2 more comments

2 Answers

up vote 8 down vote accepted

Stefano labels

Stefano J. Attardi wrote a nice jQuery plugin that does just that.
It is more stable than Robert's and also fades to a lighter gray when the field gets focus.


I modified his plugin to read placeholder attribute, as opposed to manually creating a span.
This fiddle has complete code:

HTML

<input type="text" placeholder="Hello, world!">

JS

// Original code by Stefano J. Attardi, MIT license

(function($) {
    function toggleLabel() {
        var input = $(this);

        if (!input.parent().hasClass('placeholder')) {
            var label = $('<label>').addClass('placeholder');
            input.wrap(label);

            var span = $('<span>');
            span.text(input.attr('placeholder'))
            input.removeAttr('placeholder');
            span.insertBefore(input);
        }

        setTimeout(function() {
            var def = input.attr('title');
            if (!input.val() || (input.val() == def)) {
                input.prev('span').css('visibility', '');
                if (def) {
                    var dummy = $('<label></label>').text(def).css('visibility','hidden').appendTo('body');
                    input.prev('span').css('margin-left', dummy.width() + 3 + 'px');
                    dummy.remove();
                }
            } else {
                input.prev('span').css('visibility', 'hidden');
            }
        }, 0);
    };

    function resetField() {
        var def = $(this).attr('title');
        if (!$(this).val() || ($(this).val() == def)) {
            $(this).val(def);
            $(this).prev('span').css('visibility', '');
        }
    };

    var fields = $('input, textarea');

    fields.live('keydown', toggleLabel);
    fields.live('paste', toggleLabel);
    fields.live('focusin', function() {
        $(this).prev('span').css('color', '#ccc');
    });
    fields.live('focusout', function() {
        $(this).prev('span').css('color', '#999');
    });

    $(function() {
       $('input[placeholder], textarea[placeholder]').each(
           function() { toggleLabel.call(this); }
       );
    });

})(jQuery);

CSS

.placeholder {
  background: white;
  float: left;
  clear: both;
}
.placeholder span {
  position: absolute;
  padding: 5px;
  margin-left: 3px;
  color: #999;
}
.placeholder input, .placeholder textarea {
  position: relative;
  margin: 0;
  border-width: 1px;
  padding: 6px;
  background: transparent;
  font: inherit;
}

/* Hack to remove Safari's extra padding. Remove if you don't care about pixel-perfection. */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .placeholder input, .placeholder textarea { padding: 4px; }
}
share|improve this answer
Seems decent, but the github repo wasn't updated in two years ... I'm reluctant to use stale code. – ripper234 May 6 '12 at 10:56
2  
@ripper: Could this possibly mean that the code just works? I suggest you try to use it, and if you find any problems, feel free to fork it and fix them. But if you find a better solution, please let us know. – Dan Abramov May 6 '12 at 11:01
It could mean that ... it's just not very confidence-inspiring ... but I guess I'll give it a spin. – ripper234 May 6 '12 at 12:41
@ripper: It worked for me fairly well, except for some font size issues I can't recall exactly. – Dan Abramov May 6 '12 at 13:00
A caveat: This requires a lot of CSS, and some of it interferes with my own. Some other plugins I've seen don't require any CSS to function (although I admit I found none that solves the focus problem). – ripper234 May 6 '12 at 13:03

Robert Nyman discusses the problem and documents his approach in his blog.
This fiddle that has all the neccessary HTML, CSS and JS.

enter image description here

Unfortunately, he solves the problem by changing value.
This will not work by definition if placeholder text is itself a valid input.

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.