I am working on a site using WordPress as a CMS, and I wanted to use a custom scroll bar inside a div on my website. I’ve been trying to use the jScrollPane plugin, but I’m having trouble getting it to work.
the main code is in my header.php file, and there is a class .scroll-pane the relevant code in header.php is:
<style type="text/css" id="page-css">
.scroll-pane
{
width: 100%;
height: 280px;
overflow: auto;
}
</style>
<script src="<?php bloginfo('template_url'); ?>/js/jquery-1.3.2.min.js"></script>
<link type="text/css" href="<?php bloginfo(template_url); ?>/style/jquery.jscrollpane.css" rel="stylesheet" media="all" />
<script type="text/javascript" src="<?php bloginfo(template_url); ?>/js/jquery.mousewheel.js"></script>
<script type="text/javascript" src="<?php bloginfo(template_url); ?>/js/jquery.jscrollpane.min.js"></script>
<script type="text/javascript">
var $j = jQuery.noConflict();
$j(document).ready(function()
{
$('.scroll-pane').jScrollPane({showArrows: true});
});
</script>
page.php:
< div id="sign-right">
< div class="newsBox-padding">
< div class="scroll-pane newsBox"> WP loop goes here </div></div>
CSS:
.newsBox{height:280px; overflow: auto;}
I get the following error (caught with firebug):
" $(".scroll-pane").jScrollPane is not a function
$('.scroll-pane').jScrollPane({showArrows: true}); "
I think the problem is in the function so I’ve tried a bunch of suggestions from various posts and forums including:
$function(){ jQuery('.scroll-pane').jScrollPane({showArrows: true});
$function(){ $('.scroll-pane').jScrollPane({showArrows: true}); });
I’ve checked all of my references to external files and made sure classes were named the same, they all seem to be right. And I’ve had a code savvy friend look at it too, to no avail.
I really appreciate your help!
Maybe I’m missing something here, never used jscrollpane, but I don’t see you including jquery itself. Also you call noconflict and then still use $ in your function.
I’ve had this problem because I was loading twice jquery.
Scrollpane does indeed work well when used in:
Also don’t forget to specify width and height in the div you’re applying; ie.
I dont see that you include the latest jQuery, try adding it.
To add the latest jQuery using google host:
And try using Chrome Developers Tools then Resources Tab, then you’ll see which JS files the web actually loads.
you can see a nice post at my blog about those scroll bars: jQuery Scrollbars
Also like @kingjiv said, you use Conflict then ‘$’.
Try removing he Conflict and only use:
If it still doesn’t work, the jScrollPane prolly loads before the jQuery does.
To fix this try those methods:
First moving you’r
To the end after the
</body>
Closing tag.If still doesn’t work try using When document ready
It must work 🙂
I had the same problem and it took me ages to work it out. I just couldn’t find any solution.
Then I came across this plugin for
WordPress
named:WP jScrollPane
.I downloaded and installed it. Followed the instructions and the custom
scrollbar
appeared.So for me that was actually a very simple solution. I was so into that script, that I totally forgot that
WordPress
has its own plugins as well.Anyway, I don’t know if this is useful for you, but it helped me a lot.
I am tired of problems with this plugin. I worked for one day to get it to run. I found out, that it needs the:
… file, to run normally. So it is an old plugin and the support is not very good.
I have a very simple solution for my problem 🙂 :
and
Here is the working example:
http://jsfiddle.net/ghdcmsxx/
That´s great 😀 . And it´s even optimized for touch.
Wow. No jquery, only litte css and html. I love it.