angularjs force uppercase in textbox
Please see the other answer below, which is superior to this one. this answer is based on the answer here: How to autocapitalize the first character in an input field in AngularJS?. I’d imagine that what you’d want would be a parser function like this: angular .module(‘myApp’, []) .directive(‘capitalize’, function() { return { require: ‘ngModel’, … Read more