Advertisement
Guest User

Untitled

a guest
Jul 26th, 2014
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Sammy</title>
  5. </head>
  6. <body>
  7. <div id="wrapper"></div>
  8. <a href="#/chat">Chat href</a>
  9. <a href="#/login">Login href</a>
  10. <script src="Scripts/libs/jquery-2.1.1.min.js"></script>
  11. <script src="Scripts/libs/sammy-0.7.4.js"></script>
  12. <script>
  13. var app = Sammy("wrapper", function () {
  14.  
  15. this.get('#/login', function () {
  16. alert('login');
  17. $('#wrapper').html('Login');
  18. });
  19.  
  20. this.get('#/chat', function () {
  21. $('#wrapper').html('Chat');
  22. });
  23. });
  24. app.run('#/login');
  25. </script>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement