Use for questions about AngularJS (1.x), the open-source JavaScript framework. Do NOT use this tag for Angular 2 or later versions; instead, use the [angular] tag.
How can I tell whether a (Drupal 7) web app was built using Angular by looking at the page source, and not hav
Stack trace: Error: $apply already in progress at Error (<anonymous>) at beginPhase (file:///android_as
I want to catch the enter key press event on the textbox below. To make it more clear I am using a ng-repeat t
I have a service, say: factory('aService', ['$rootScope', '$resource', function
I'm trying to understand the difference between ng-if and ng-show/ng-hide, but they look the same to me.
What's the correct way to communicate between controllers? I'm currently using a horrible fudge inv
I am defining a custom filter like so: <div class="idea item" ng-repeat="item in items" isoatom>
I have an array of products that I'm repeating over using ng-repeat and am using <div ng-repeat="pro
I'm writing a small AngularJS app that has a login view and a main view, configured like so: $routeProvi
I understand that ng-show and ng-hide affect the class set on an element and that ng-if controls whether an el
When you create a directive, you can put code into the compiler, the link function or the controller. In the
I understand AngularJS runs through some code twice, sometimes even more, like $watch events, constantly check
I'm currently learning AngularJS and am having difficulty understanding the difference between ng-bind an
Can we have multiple expression to add multiple ng-class ? for eg. <div ng-class="{class1: expressionData
As I understand it, when inside a factory I return an object that gets injected into a controller. When inside
I have written a filter function which will return data based on the argument you are passing. I want the same
I've been working with AngularJS for the last few weeks, and the one thing which is really bothering me i
In my controller, I have data like: $scope.object = data Now this data is the dictionary with keys and values
I want to do a condition in an AngularJS template. I fetch a video list from the Youtube API. Some of the vide
What is the 'Angular way' to set focus on input field in AngularJS? More specific requirements: Wh