I am using jScrollPane and are just testing it in all browsers and have discovered that it doesn't work in IE. Does anyone have any suggestions. Thanks. Here is the link.
You have an extra comma after animateScroll: true,
on your page...
change...
$(this).jScrollPane(
{
showArrows: false,
animateScroll: true,
}
to...
$(this).jScrollPane(
{
showArrows: false,
animateScroll: true
}
That should display the scroll pane in IE.