I have jquery 1.10, scriptaculous. I fixed the conflict with $ in my jsp. Now, I'm planning to implement angular in my code. I think i have conflict with $ between angular and scriptaculous. How do i resolve it ?
i'm using this in my code
$http({
method: 'JSONP',
url: '' }).then({});
I get the error Uncaught ReferenceError: $http is not defined
How to fix it ?
You need to inject $http dependency into your controller: