The jquery .css method does not work for this. Is there an alternate one to get the real value in the css sheet like a percentage ect... ? Here is an example which show that .css don't work for this: External css:
margin-left: 10%;
Js Code:
var Marginleft = $(domElem).css('margin-left');
alert(Marginleft);
This return a value in pixel. I'd like to get the percentage, is it possible without going in the css as a string ?