1234567891011121314151617181920212223242526272829 |
- jquery.nicescroll
- copyright 2011 InuYaksa*2011
- licensed under the MIT
- https://github.com/inuyaksa/jquery.nicescroll
- A jquery (since 1.5) plugin for nice scrollbars as ios/mobile style.
- 1. How to use (simple):
- $(document).ready(
- function() {
- $("body").niceScroll();
- }
- );
- 2. How to use (with object returned):
- var scrollbars = false;
- $(document).ready(
- function() {
- scrollbars = $("body").niceScroll();
- }
- );
|