For some reasons, I can\'t change the style of an element using the following :
angular.element(\"#element\").style.height = 100px;
I\'m su
Angular's element
returns something that wraps a DOM element, not the DOM element itself.
You can access the underlying element much like you would with a JQuery selector.
angular.element("#element")[0].style.height = 100px;
That of course assumes you've got one match, which you should when using an ID.