Ver Mensaje Individual
  #13 (permalink)  
Antiguo 30/03/2009, 04:51
venkman
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Problema Jquery

Suponiendo que tienes otro div con class="Ccontenido" dentro del tercer <tr> como tenías dentro del segundo tr, entonces podrías hacer:

Código javascript:
Ver original
  1. $(document).ready(function() {
  2.     $(".Bentrada").click(function() {
  3.         $(".Ccontenido:visible").slideUp("slow");
  4.         $(this).next("tr").add($(this).next("tr").next("tr")).find(".Ccontenido:hidden").slideDown("slow");
  5.     });
  6. });

Lo que hace es añadir (add) el siguiente del siguiente (.next("tr").next("tr")) y luego aplicarles el efecto a ambos.