I have an angular app with which has a few $http.get calls some with a success/error funcs others just as below. After trying to increase the speed of the app, I noticed that changing the $http.get calls to jquery calls the app sped up. So are jquery calls faster than angular $http calls, if so I'll change all my get request to jquery.
$http.get('/event/'+ _id);
$.ajax({url: '/event/'+ _id });
Has anyone else noticed this?