README 638 B

12345678910111213141516171819202122232425262728293031323334
  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. Only vertical scrolls supported in this version.
  10. 1. How to use (simple):
  11. $(document).ready(
  12. function() {
  13. $("body").niceScroll();
  14. }
  15. );
  16. 2. How to use (with object returned):
  17. var scrollbars = false;
  18. $(document).ready(
  19. function() {
  20. scrollbars = $("body").niceScroll();
  21. }
  22. );