James Allardice
James Allardice
Thanks, I'll definitely keep an eye on the project and would definitely consider adding support for it at some point.
I am open to removing the password functionality when it is not supported (as you say that is easy to detect because the `type` attribute won't change). However I think...
Thanks for reporting this. It's definitely a bug, but I can't work out what is going on. IE10 dropped into IE7 standards mode seems to somehow remove the `placeholder` attribute...
Currently, we are checking for the presence of a `placeholder` attribute on each `input` and `textarea` element in the DOM as follows: ``` placeholder = elem.getAttribute("placeholder"); ``` The only way...
Fixed as of 2.1.0 release.
@Florisschimandl Thanks, confirmed. I'll reopen this and try to fix that soon.
I'm assuming you're trying to create multiline placeholders by adding `\n` characters to the placeholder attribute value? That will work when Placeholders.js is active because it just sets the value...
Nice one, that's definitely a bug. If you fork the repository and commit your fix I can take a proper look at it in a pull request and merge it...
@becoder No, there are no plans to add this functionality in IE8. As discussed in other issues, that would involve a complete change in the way the polyfill works. I...
That is definitely an option, but I'm reluctant to make it a default as it would change the current behaviour. I will look at adding it as an configurable option...