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.

Hello I have a small issue, Placeholder attr for input boxes is not supported in IE 8-9.

What is the best way to make this support in my project (ASP Net). I am using Jquery. Need I use some other external tools for it ?

Does http://www.hagenburger.net/BLOG/HTML5-Input-Placeholder-Fix-With-jQuery.html good solution ?

Thanks.

share|improve this question
Pedant's corner: it's an attribute, not a tag. A tag has pointy brackets around it (like <input>); an attribute is a key-value pair inside the pointy-brackets (like placeholder="This is an attribute value"). Leaving the question as-is, so that future people who ask the same question can find it. – Paul D. Waite Feb 22 at 9:40

4 Answers

up vote 4 down vote accepted

You could use this jQuery plugin: https://github.com/mathiasbynens/jquery-placeholder

But your link seems to be also a good solution.

share|improve this answer

You can use this polyfill:

https://github.com/jamesallardice/Placeholders.js

This script will add support for the placeholder attribute in browsers that do not support it, and it does not require jQuery!

share|improve this answer
1  
+1 for no jQuery requirement. Cheers – patrickmjones May 15 at 19:59

if you use jquery you can do like this. from this site Placeholder with Jquery

$('[placeholder]').parents('form').submit(function() {
  $(this).find('[placeholder]').each(function() {
    var input = $(this);
    if (input.val() == input.attr('placeholder')) {
      input.val('');
    }
  })
});

these are the alternate links

  1. Placeholder jquery library
  2. HTML5 polyfills -- go for placeholder section
share|improve this answer

You can check here if your jquery framework is compatible with ie9 http://msdn.microsoft.com/en-us/library/ie/hh180175%28v=vs.85%29.aspx

share|improve this answer
That's not what the OP is asking. They're asking how to add support for the placeholder attribute to IE 9. – Paul D. Waite Feb 22 at 9:41

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.