I have the following problem in my angular code js, where the texarea has a required attribute and no matter what you enter, the validation will never happen. It is important to mention that this only happens with Internet Explorer 11
<div class="row mt50 ">
<p>{{'PMO_RESUMEACSO_HEADER' | translate}}</p>
<div ng-class="{'pmo-error': showError('resumeACSO')}">
<textarea ng-model="currentModel().ResumeACSO" required name="resumeACSO" class="form-control textarea" placeholder="{{'PMO_RESUMEACSO_PLACEHOLDER' | translate}}">{{currentModel().ResumeACSO}}</textarea>
<span ng-show="showError('resumeACSO')">
{{'ERROR_MSG_REQUIRED' | translate}}
</span>
</div>
</br>
<p>{{'PMO_RESUMEACSO_FOOTER' | translate}}</p>
</div>