README 437 B

1234567891011121314151617181920212223242526272829
  1. jquery.nicescroll
  2. copyright 2011 InuYaksa*2011
  3. licensed under the MIT
  4. https://github.com/inuyaksa/jquery.nicescroll
  5. A jquery (since 1.5) plugin for nice scrollbars as ios/mobile style.
  6. 1. How to use (simple):
  7. $(document).ready(
  8. function() {
  9. $("body").niceScroll();
  10. }
  11. );
  12. 2. How to use (with object returned):
  13. var scrollbars = false;
  14. $(document).ready(
  15. function() {
  16. scrollbars = $("body").niceScroll();
  17. }
  18. );