I am using jQuery TinyScrollbar plugin to add scrollbars to some content , on Firefox, it works but when I refresh, sometimes it disappears, on chrome, it doesn't show at all, I have follow the example on the website http://baijs.nl/tinyscrollbar/ , and I don't know what's the problem.
The site where you can see the problem is at http://www.outstock.es/avances/index.php/products/show/1
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
|
After looking at the code on your page it looks like these two lines are hit too early:
Make sure these are being hit in the DOM ready event in your general.js file When i open your page and run those lines of code from the console your #scrollbar 1 appears. #Scrollbar2 does not exist exist on the page. You can confirm this by running this selector from the command line of the chrome dev tools:
This returns 0 meaning the selector did not find a match. Good Luck |
|||
|
|