jonassvensson4

Untitled

Feb 2nd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.     $("#content").load("page1.html");
  3.    
  4.     $("a").click(function(){
  5.         if($(this).attr("data-page") == "one")
  6.         {
  7.             $("#content").load("page1.html",function(){}).hide().fadeIn("slow");
  8.         }
  9.         else
  10.         {
  11.             $("#content").load("page2.html",function(){}).hide().fadeIn("slow");
  12.         }
  13.     });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment