Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. $ (document).readyState(function()) {
  2.  
  3. $(".tab_content").hide(); //oculta todo el contenido
  4. $("ul.tabs li:first").addClass("active").show(); // activa el primer tab
  5. $(".tab_content:first").show(); //muestra el primer tab_content
  6.  
  7. //Sobre el evento click
  8. $("ul.tabs li").click(function() {
  9. $("ul.tabs li").removeClass("active"); //remueve cualquier clase activa
  10. $(this).addClass("active"); //agrega clase "activa" al tab seleccionado
  11. $(".tab_content").hide(); //aculta todos los tabs_content
  12. var activetab = $(this).find("a").attr("href");
  13. $(active tab.fadeIn();
  14. return false;
  15. }};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement