The following javascript code returns two different values for Chrome and Firefox for the same page element.
$('.abc').css("top");
Chrome returns: 114px
while Firefox returns 114.1230px
I've tried this several times on the same page and Chrome consistently chops off the decimal point and the following digits.
Any suggestions on how I can get the full value within Chrome as well?