before posting the whole code, i wanted to make sure I am not missing a simple issue here.
var dv = $(myElement);
var pos = dv.offset();
var width = dv.width();
var height = dv.height();
alert(pos);
alert(width);
alert(height);
here, width alerts fine, height alerts fine but offset alerts [object Object] (in firefox)
am I missing something here?