Advertisement
Guest User

Untitled

a guest
Feb 18th, 2014
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. var s1hash = window.location.hash;
  2. var hash = s1hash.split("&",1);
  3. if(hash == "#home"){
  4. $("#content-wrapper").load("./pages/index.php");
  5. }else if(hash == "#contact"){
  6. $("#content-wrapper").load("./pages/contact.php");
  7. }
  8. $(document).ready( function() {
  9. $("#home").on("click", function() {
  10. $("#content-wrapper").load("./pages/index.php");
  11. });
  12. $("#contact").on("click", function() {
  13. $("#content-wrapper").load("./pages/contact.php");
  14. });
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement