I am stuck with an incompatible version of jQuery in my Angular application, I cannot update jQuery, but I can download the latest jQuery side by side using the noConflict method, but I cannot find a way to force Angular.js to use the new jQuery version. Is there such a method?
Flow
<head> <script src="jQuery 1.3.2"> <script src="old jquery code"> </head> <body> … <script src="jQuery 1.10.2"/> <script> var newjquery = jQuery.noConflict(); </script> <script src="angular.js"/> <script> </script> </body>
source share