In order to let angular.element point to jQuery instead of jQLite, one needs to load jQuery before Angular in the page head.
However, for performance reasons(especially on mobile devices) it would be nice if it was possible to load jQuery after AngularJS is loaded. The jQuery library is relatively large, so letting the 'above the fold content' depend on jQuery lite and let jQuery load asynchronously after Angular, would provide an increase in performance.
I think it would be possible if Angular would expose it's bindJquery function and it's JQLitePrototype object.
Anyone any ideas how to do this without touching the Angular core?