README 588 B

1234567891011121314151617181920212223242526272829303132
  1. jquery.nicescroll
  2. v. 1.5.0 10-30-2011
  3. copyright 2011 InuYaksa*2011
  4. licensed under the MIT
  5. https://github.com/inuyaksa/jquery.nicescroll
  6. A jquery (since 1.5) plugin for nice scrollbars as ios/mobile style.
  7. It supports DIVs, IFrames and document page (body) scrollbars.
  8. Compatible with Firefox 4+, Chrome 5+, Safari 4+, Opera 10+, IE 8+.
  9. 1. How to use (simple):
  10. $(document).ready(
  11. function() {
  12. $("body").niceScroll();
  13. }
  14. );
  15. 2. How to use (with object returned):
  16. var scrollbars = false;
  17. $(document).ready(
  18. function() {
  19. scrollbars = $("body").niceScroll();
  20. }
  21. );