Advertisement
Hardrockdesign

Javascripts Arlandria

Apr 5th, 2015
2,184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. ----------------------- AFILIADOS -----------------------
  2.  
  3. $(document).ready(function () {
  4. $('#alfinalforo').appendTo('#content');
  5. });
  6.  
  7. ----------------------- PIE DE FORO -----------------------
  8.  
  9. $(function(){
  10. $("div.h3 a[href='/statistics']").text("Cambiar estadsticas por lo que quieras");
  11. $("div#main-content p.page-bottom").each(function(){
  12. $(this).html($(this).html()
  13. .replace("Nuestros miembros", "Se")
  14. .replace("El último usuario registrado es", "El último miembro es"));
  15. });
  16. });
  17.  
  18. ----------------------- DESCONECTARSE -----------------------
  19.  
  20. jQuery(document).ready(function(){
  21.  
  22. jQuery('a.mainmenu[href^="/login?logout=1"]').html('Desconectarse');
  23.  
  24. });
  25.  
  26. ----------------------- ESTADÍSTICAS -----------------------
  27.  
  28. jQuery(document).ready(function(){
  29. $(".forabg + ul").after('
  30. <div id="stats">
  31. <div class="enlinea"></div>
  32. <div class="grupos"><div class="grupo1"><span style="font-size: 17px;">00</span><br>Elfos</div><div class="grupo2"><span style="font-size: 17px;">00</span><br>Nereidas</div><div class="grupo3"><span style="font-size: 17px;">00</span><br>Sirenas</div><div class="grupo4"><span style="font-size: 17px;">00</span><br>Magos</div><div class="grupo5"><span style="font-size: 17px;">00</span><br>Brujas</div><div class="grupo6"><span style="font-size: 17px;">00</span><br>Humanos</div></div>
  33. <div class="afiliados"></div>
  34. <div class="estadisc"></div>
  35. </div>');
  36. $("#stats + .h3,#i_whosonline,#i_whosonline + p").appendTo("#stats .enlinea");
  37. $(".clear + .h3,p.page-bottom + .h3,p.page-bottom").appendTo("#stats .estadisc");
  38. });
  39.  
  40. ----------------------- SELECTOR DE COLOR -----------------------
  41.  
  42. Tomar su Javascript de este link: http://asistencia.foroactivo.com/t134777-anadir-selector-de-color-avanzado
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement