is it possible to turn off the vertical scroll bar in jscrollpane? Also is there a list of variables you can use/set?
$(function()
{
var api = $('.scroll-pane').jScrollPane({showArrows:false}).data('jsp');
$('#scroll-up').bind(
'click',
function()
{
api.scrollByY(-10);
return false;
}
);
$('#scroll-down').bind(
'click',
function()
{
api.scrollByY(10);
return false;
}
);
});
Remove these piece of code from jquery.jscrollpane.css:
It worked for me.