I’ve got a border display issue with jScrollPane, would you know which css rule to use to remove this border?
http://stackoverflow.com/questions/4244898/blue-border-on-jscrollpane-div
Try adding outline: none;
to your css
When you initialize jScrollPane, use the parameter:
hideFocus: true
For ex:
$('.scroll-pane').jScrollPane(
{
autoReinitialise: true,
hideFocus: true
});