Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function() {
- $("#content").load("page1.html");
- $("a").click(function(){
- if($(this).attr("data-page") == "one")
- {
- $("#content").load("page1.html",function(){}).hide().fadeIn("slow");
- }
- else
- {
- $("#content").load("page2.html",function(){}).hide().fadeIn("slow");
- }
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment