Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the following tiny scrollbar plugin http://baijs.nl/tinyscrollbar/ to apply scroll to a div inside my body. Following is the html content:

Following is the html structure:

 <div id="scrollbar1">
    <div class="scrollbar"><div class="track"><div class="thumb"><div class="end"></div></div></div></div>
  <ul>

    <li> 
           Rated
      4 hours ago 
    </li>

    <li> 
      Rated 
      6 hours ago 
    </li>

    <li> 
      upvoted 
      6 hours ago 
    </li>

  </ul>
  </div>

then the javascript looks like this:

$(funciton(){
$('#scrollbar1').tinyscrollbar();
});

The fiddle is http://jsfiddle.net/sk9SE/2

The trouble is i am not getting the desired effect. Can someone please tell me what is wrong with it?

Thanks!

share|improve this question
can you put it on fiddle? – Milind Anantwar Jan 31 at 12:08
and add your css too – Pete Jan 31 at 12:11
done please check – whatf Jan 31 at 12:14
How come the unnacept? – Pete Feb 1 at 11:23
sorry, my mistake. – whatf Feb 1 at 16:09

1 Answer

up vote 2 down vote accepted

you haven't included your viewport or overview divs - they are needed for the scrolling

here is a fixed version:

<div id="scrollbar1">
<div class="scrollbar"><div class="track"><div class="thumb"><div class="end"></div></div></div></div>
<div class="viewport">
    <div class="overview">
      <ul>
         <li> Rated 4 hours ago </li>
         <li> Rated 2 hours ago </li>
         <li> Rated 5 hours ago </li>
         <li> Rated 44 hours ago </li>
         <li> Rated 4665 hours ago </li>
         <li> Rated 124 hours ago </li>
         <li> Rated 124 hours ago </li>
     </ul>
    </div>
</div>

Working Demo

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.