README 505 B

123456789101112131415161718192021222324252627282930
  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. Compatible with Firefox 4+, Chrome 5+, Safari 5+, Opera 10+, IE 8+.
  7. 1. How to use (simple):
  8. $(document).ready(
  9. function() {
  10. $("body").niceScroll();
  11. }
  12. );
  13. 2. How to use (with object returned):
  14. var scrollbars = false;
  15. $(document).ready(
  16. function() {
  17. scrollbars = $("body").niceScroll();
  18. }
  19. );