I am trying to scroll to a specific location in a scrolling DIV. Right now I am using a pixel offset with the jQuery scrollTop() function which works great on desktop brows
I had the same problem and solved it by using jquery .offset() instead.
.offset()
http://api.jquery.com/offset/
$('#yourFineElement').offset({ top: X, left Y)});