Advertisement
Guest User

Expert Template JS

a guest
Oct 25th, 2015
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $(document).ready(function(){
  2. $(".one").click(function(){
  3. $(".stats").fadeIn("slow");
  4. $(".bio, .ooc").fadeOut("slow");
  5. });
  6. $(".two").click(function(){
  7. $(".bio").fadeIn("slow");
  8. $(".stats, .ooc").fadeOut("slow");
  9. });
  10. $(".three").click(function(){
  11. $(".ooc").fadeIn("slow");
  12. $(".stats, .bio").fadeOut("slow");
  13. });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement