Let\'s say the rule is as follows:
.largeField { width: 65%; }
Is there a way to get \'65%\' back somehow, and not the pixel value?
Most easy way
$('.largeField')[0].style.width // >>> "65%"