Advertisement
Hardrockdesign

Captain Javascripts

Apr 16th, 2015
2,129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. ----------------------- AFILIADOS-----------------------
  2. $(document).ready(function () {
  3. $('#alfinalforo').appendTo('#main-content');
  4. });
  5. ----------------------- CAMBIOS DE NOMBRE EN ESTADÍSTICAS -----------------------
  6. $(function(){
  7. $("div#main-content p.page-bottom").each(function(){
  8. $(this).html($(this).html()
  9. .replace("Nuestros miembros han publicado un total de", "Publicaciones")
  10. .replace("Tenemos", "Miembros")
  11. .replace("mensajes", " ")
  12. .replace("El último usuario registrado es", "Usuario más reciente")
  13. .replace("miembros registrados", " "));
  14. });
  15. });
  16. ----------------------- PESTAÑAS DEL PERFIL -----------------------
  17. $(document).ready(function(){
  18. $("#tabs li").click(function() {
  19. currentprofile = $(this).parent().parent().parent().parent();
  20. $("#tabs li", currentprofile).removeClass('active');
  21. $(this).addClass("active");
  22. $(".tab_content", currentprofile).hide();
  23. var selected_tab = $(this).find("a").attr("href");
  24. $(selected_tab, currentprofile).fadeIn();
  25. return false;
  26. });
  27. });
  28. ----------------------- DESCONECTARSE -----------------------
  29. jQuery(document).ready(function(){
  30.  
  31. jQuery('a.mainmenu[href^="/login?logout=1"]').html('Desconectarse');
  32.  
  33. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement