[jQuery] scrollLeft() while using jScrollHorizontalPane?

[jQuery] scrollLeft() while using jScrollHorizontalPane?


Hi everyone, I'm having a problem with a pretty simple piece of code:
I have a overflowed div acting as an iframe, and am trying to use both
the dimensions plugin and jScrollHorizontalPane with it:
jQuery(function() {
$('#view-content-shop-standard-view').jScrollHorizontalPane({});
$('#view-content-shop-standard-view').scrollLeft(75);
alert( $('#view-content-shop-standard-view').scrollLeft() );
});
Here, neither calls to scrollLeft() do anything. On this page:
http://threeformed.com/labs/jScrollHorizontalPane/examples/basicScroller.html
the DOM function $('#pane1')[0].scrollTo(75); is used to scroll, but
what property or function would be used in this situation to return
'75', which is now the offset of the horizontal scrollbar (set with
scrollTo(75)?
I've spent a lot of time working with this and would appreciate any
help. Thanks.