Placeholder doesn't work in IE9

Possible duplicate:
placeholder in ie9

I use placeholder for my text fields. The problem is that they appear in firefox and chrome, but it does not work in IE9. I searched on the Internet, but none of the solutions worked for me. Any ideas?

<input class="text" type="text" name="name" value="" placeholder="Name" required /><br />
+5
source share
2 answers

If you mean the placeholder attribute, it is not supported in IE9: http://caniuse.com/#search=placeholder . You will need to use a different solution to simulate behavior.

+5
source

IE9 does not support HTML5 linker.

You need to do this using javascript.

Check this plugin .

+5
source

All Articles