I have a textarea that when one types the hash symbol "#" the focus switches to an input. The issue I am having is that when the cursor switches to the input element it is triggering the ng-blur function.
angular.element('#inputElement').focus();
is triggering a blur event.
Why is it triggering ng-blur? That makes no sense to me.
See the demo: