In my project I am using both jQuery and angular. I have installed these through bower and I am using browserify to load the files. This seems to work fine, except angular is using jqLite it seems. When I am trying to run
angular.element(".workItem").hide();
I get an error saying jqLite does not support query selectors. How can I get around this and make angular use jQuery?
I want to use angular.element over $ for testing purposes.
Thanks!