Hi,
I have one field Age
currently my requirement in that min value should be 18 and max value should be 60
if i am trying to enter less than 18 don't allow to enter
in the same way if i am trying to enter greater than 60 don't allow
could you please help me
<html>
<head>
<title></title>
<meta charset="utf-8" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.9/angular.min.js"></script>
<script type="text/javascript">
var app = angular.module('MyApp', []);
app.controller('MyController', function ($scope) {
});
</script>
</head>
<body ng-app="MyApp" ng-controller="MyController">
Number : <input type="text" ng-model="Age" /><br />
</body>
</html>