Advertisement
Hardrockdesign

Java Arthur

Jul 3rd, 2015
1,204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. Recordad que los títulos son orientativos y NO deben pegarse. Sólo copiad y pegad los códigos.
  2.  
  3. ----------------------- DESCONECTARSE ----------
  4.  
  5. jQuery(document).ready(function(){
  6.  
  7. jQuery('a.mainmenu[href^="/login?logout=1"]').html('Desconectarse');
  8.  
  9. });
  10.  
  11. ----------------------- PESTAÑAS ---------------
  12.  
  13. $(document).ready(function () {
  14. $(".Sb").click(function () {
  15. var mid = $(this).attr("id").replace(/\D/g, '');
  16. $(".Sb").removeClass("selected");
  17. $(".Sc:not(#c" + mid + ")").hide();
  18. $("#Sc" + mid).fadeIn();
  19. $("#Sb" + mid).addClass("selected");
  20. });
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement