Advertisement
Hardrockdesign

Javascript SPN

May 27th, 2015
1,102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. ----------------------- AFILIADOS -----------------------
  2.  
  3. $(document).ready(function () {
  4. $('#alfinalforo').appendTo('#content');
  5. });
  6.  
  7. ----------------------- CAMBIOS DE NOMBRE ---------------
  8.  
  9. $(function(){
  10. $("#estadisticas").each(function(){
  11. $(this).html($(this).html()
  12. .replace("Nuestros miembros han publicado un total de", "Total de ")
  13. .replace("Tenemos", " ")
  14. .replace("publicaciones", " ")
  15. .replace("El último usuario registrado es", "Recién llegado"));
  16. });
  17. });
  18.  
  19. ----------------------- PESTAÑAS ------------------------
  20.  
  21. $(document).ready(function () {
  22. $(".Sb").click(function () {
  23. var mid = $(this).attr("id").replace(/\D/g, '');
  24. $(".Sb").removeClass("selected");
  25. $(".Sc:not(#c" + mid + ")").hide();
  26. $("#Sc" + mid).fadeIn();
  27. $("#Sb" + mid).addClass("selected");
  28. });
  29. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement