Lets say I have:
.item {
width: 33%;
}
The thing is that if with jQuery I have to retrieve width:
$('.item').first().css('width')
It returns the actual width in pixels,
How can I get the %
? Do I have to calculate based on the actual parent's width?