It is possible to add !important in animate? I tried adding like that in angular:
angular.element(".myClassName").css("margin-left","100px !important");
It is possible to add !important in animate? I tried adding like that in angular:
angular.element(".myClassName").css("margin-left","100px !important");
We can create a class say
.marginleft100px {
margin-left: 100px !important;
}
and we can add this class using addClass(); instead using .css().
Hoping this will work.