Has anybody else had problem with position() working odd in IE? I’m trying to return the left position of a div that is centrally placed. Chrome returns 342, which is right. IE9 returns 0.5. What’s that all about?
var sp = $('.jcarousel-container').position();
alert(sp.left)
It seems that .offset() does work in IE9 in your jsfiddle example:
http://jsfiddle.net/fme6V/7/
Here’s the code: