Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function(){
- $(".one").click(function(){
- $(".stats").fadeIn("slow");
- $(".bio, .ooc").fadeOut("slow");
- });
- $(".two").click(function(){
- $(".bio").fadeIn("slow");
- $(".stats, .ooc").fadeOut("slow");
- });
- $(".three").click(function(){
- $(".ooc").fadeIn("slow");
- $(".stats, .bio").fadeOut("slow");
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement