Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/05/2010, 18:27
Avatar de mayid
mayid
Colaborador
 
Fecha de Ingreso: marzo-2009
Ubicación: BsAs
Mensajes: 4.014
Antigüedad: 15 años, 7 meses
Puntos: 101
Respuesta: jquery y checkbox

Probaste contar las cajas?

$("input:checked").size() o $("input:checked").length()

Para modificar el h3 pordes ir haciendole esto:

actual = $("h3.tipo").text()
$("h3.tipo").text(actual);

Juntando todo: si hay mas de una seleccion, usas una variable para almacenar y modificar el h3. Si hay solo una seleccion, reemplazas el contenido directamente.