I\'m getting \"Invalid argument\" when using angularJS ,TextArea with placeholder, on IE10+.
This will ONLY happen when the textarea node is closed with
This seems to be an issue with the way you're binding to the element's placeholder - strange, I know.
I was able to get everything working correctly in IE using the ng-attr-placeholder directive instead of binding directly to the attribute in the DOM.
For example, instead of:
Try this:
Related: AngularJS v1.2.5 script error with textarea and placeholder attribute using IE11