From docs :
To use jQuery, just make sure it is loaded before the angular.js file.
So, in your index.html file you need something like this:
<html> <head> <script src='jquery.js'></script> <script src='angular.js'></script> </head> </html>
After that, angular.element should work as a replacement for $ :
If jQuery is available, angular.element is an alias for the jQuery function. If jQuery is not available, the angular.element delegates to the Angular built-in subset of jQuery called "jQuery lite" or "jqLite".
Those. angular.element('.foo') will be the same as $('.foo') .
source share