Blue border on jScrollPane div

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

 

gKaiT

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
});

Leave a comment