containing-interaction-elements.html 842 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>jquery.pep base demo - using minified version</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. });
  15. </script>
  16. <style type="text/css">
  17. .pep {
  18. background: #bbb;
  19. width: 200px;
  20. }
  21. .pep form {
  22. margin: 20px;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div class="pep">
  28. <form>
  29. <input type="text" placeholder="this is an input"></input>
  30. </form>
  31. </div>
  32. </body>
  33. </html>