I want to call my AngularJs function from JavaScript
JavaScript
function loadData1() {
var dropdown = document.getElementById("dropdown");
var a = dropdown.options[dropdown.selectedIndex].value;
if (a=="organisationUnits") {
getorganisationUnits();
}
}
AngularJs
var app = angular.module("myApp", []);
app.controller("myCtrl", function($scope) {
//angular.element('#myCtrl').scope().getorganisationUnits();
$scope.getorganisationUnits = function () {
window.alert("Show data");
}
});
HTML
<div ng-app="myApp" ng-controller="myCtrl" id="content">
<select id="dropdown">
<option value="selected"> Please Select Option</option>
<option value="organisationUnits"> Organisation Units</option>
</select>
<input type="button" value="Go" id="getall_go" onclick="loadData1()"></input>
</div>