I have an element in the dom that i get in a directive like this
angular.element.find('#id-campaign-menu')
all good till i try to apply some new css to it like so
var el = angular.element.find('#id-campaign-menu');
el.css({left: 400});
I get
Uncaught TypeError: el.css is not a function(…)