I\'m trying to get an element\'s CSS (top and left) with jQuery:
$(element).css(\'top\');
but instead of \"12%\" like it should be, I get the p
calculate it by your own:
($(element).css('top') / parentHeight) * 100;