Is it possible to do something like this -> Clear icon inside input text
only in angular.js? I need it for my angular application and due to various private scopes I can't get it working with jQuery.
Is it possible to do something like this -> Clear icon inside input text
only in angular.js? I need it for my angular application and due to various private scopes I can't get it working with jQuery.
Assuming you are using ng-model:
<div class="container">
<input type="text" ng-model="someTextField" />
<button ng-click="someTextField = ''">x</button>
</div>
I've created a directive through which you can clear inputs.
Check out the clear-icon directive at GitHub