Advertisement
siegementality

EII js

Mar 26th, 2016
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. $(document).ready(function(){
  2. $(".one").click(function(){
  3. $(".stat").fadeIn("slow");
  4. $(".bio, bro, .ooc").fadeOut("slow");
  5. });
  6. $(".two").click(function(){
  7. $(".bio").fadeIn("slow");
  8. $(".bro, .stat, .ooc").fadeOut("slow");
  9. });
  10. $(".three").click(function(){
  11. $(".bro").fadeIn("slow");
  12. $(".bio, .stat, .ooc").fadeOut("slow");
  13. });
  14. $(".four").click(function(){
  15. $(".ooc").fadeIn("slow");
  16. $(".bro, .bio, .stat").fadeOut("slow");
  17. });
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement