I've added an onchange event to the select box, but it doesn't seem to be working. Any suggestions would be greatly appreciated. Thank you in advance.
HTML
[<select id="notifyBy" ng-change="selectchange()" style="border:none" class="formtext1" ng-model="selectvalue" >
<option value="1">E-mail, telephone, etc.</option>
<option>Telephone No:</option>
<option>Telephone No:</option>
<option>Telephone No:</option>
<option>Telephone No:</option>
</select>][1]
controller
angular.module('starter.controllers', [])
[.controller('AppCtrl',\['$scope',function($scope, $ionicModal, $timeout,$location,$ionicPopover,$http,$ionicNativeTransitions) {
$scope.selectchange = function() {
alert("enterd");
}][1]
}])