In this sction, we shall learn how to use jQuery in AngularJS controllers or any other AngularJS functions.
AngularJS has built-in subset of jQuery that is named as jqLite that supports almost 35 most frequently used functions of jQuery. To call jQuery functions, we need to use angular.element object and then the selectors (Note that selectors are not part of jqLite so we will need to use plain JavaScript functions like document.getElementById
or document.getElementsByTagName
etc. to select the element and then on top of them we can use jqLite functions.
To know more about how to call jQuery functions in AngularJS, read below posts.