Advertisement
Guest User

Untitled

a guest
Apr 14th, 2014
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Demo</title>
  5. <meta charset="utf-8">
  6. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
  7. <script src="js/jquery.steps.js"></script>
  8. <script>
  9. $(document).ready(function() {
  10. $("#wizard").steps({
  11. headerTag: "h1",
  12. bodyTag: "section",
  13. transitionEffect: "slideLeft",
  14. autoFocus: true
  15. });
  16. });
  17. </script>
  18. </head>
  19. <body>
  20. <center>
  21.  
  22.  
  23. <div id="wizard">
  24. <h1>First Step</h1>
  25. <section>First Content</section>
  26.  
  27. <h1>Second Step</h1>
  28. <section>Second Content</section>
  29.  
  30. </div>
  31.  
  32.  
  33. </center>
  34.  
  35.  
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement