I don't know the “correct jScrollPane method”, but it works in modern browsers.
The problem is that paddingand borderon .jspTrackadd up to make the scrollbar height 306pxinstead 300px.
So you can use the property box-sizingon .jspTrack:
width: 12px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
: http://jsfiddle.net/Mfest/2/
, .