return-false.html 774 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>jquery.pep - return false </title>
  6. <!-- Load local jQuery. -->
  7. <script src="../libs/jquery/jquery.js"></script>
  8. <script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
  9. <!-- Load local lib and tests. -->
  10. <script src="../src/jquery.pep.js"></script>
  11. <script type="text/javascript">
  12. $(document).ready(function(){
  13. $('.pep').pep({
  14. debug: true,
  15. drag: function(){
  16. return false;
  17. }
  18. });
  19. });
  20. </script>
  21. <style type="text/css">
  22. .pep{ width: 200px; height: 200px; background: blue; }
  23. </style>
  24. </head>
  25. <body>
  26. <div class="pep"></div>
  27. </body>
  28. </html>