There is a simple way to change dynamically an html attribute?
I hide a div with angular scope variable and a ng-hide, but the size of the div still there, how I can change the size of that div?
I tried with:
<div id="bodyContent" ng-hide="showContent" style="height:size"></div>
and
<div id="bodyContent" ng-hide="showContent" style="height:{{size}}"></div>