SyntaxFix
Write A Post
Hire A Developer
Questions
For anyone struggling with IE8 (it doesn't like the unbind('input'), I found a way around it.
Inject $sniffer into your directive and use:
if($sniffer.hasEvent('input')){ elm.unbind('input'); }
IE8 calms down if you do this :)