I\'m setting top or bottom and left or right values to a few elements. When i\'m trying to access this values with Firefox (16.0.2), i get a wrong value for top
top
You Can Get integer Value of top when you set 'auto' with below code:
$(function(){ var top = $('div').offset().top; alert(top); });