Sunday, July 24, 2016

AngularJS binding does not update when IE's clear button is clicked

IE has an "X" in each text input that will clear the input. However, when clicking this button, while it clears the textbox, it does not update the Angular model that the input is bound to.
the best solution for this is hide the cross icon in the input fields using the code below
input::-ms-clear{display:none;}