Angular JS views not updating properly Angular JS views not updating properly angularjs angularjs

Angular JS views not updating properly


As the docs explains:

$apply() is used to execute an expression in angular from outside of the angular framework. (For example from browser DOM events, setTimeout, XHR or third party libraries). Because we are calling into the angular framework we need to perform proper scope life-cycle of exception handling, executing watches.

So if you have a jQuery code like

$('#myDiv').on('click', function() {  // do stuff  $scope.$apply();});