Ver Mensaje Individual
  #1 (permalink)  
Antiguo 10/09/2010, 06:40
Avatar de mayid
mayid
Colaborador
 
Fecha de Ingreso: marzo-2009
Ubicación: BsAs
Mensajes: 4.014
Antigüedad: 15 años, 9 meses
Puntos: 101
validar radio y cbox segun su nombre

Tengo un script para validar radio butons y checkboxes. Quisiera que funcionase sin id ni class name. Solo con el atributo name. Pero no se construir el selector:
Cita:
$( "input:radio[name=grupo1]:checked" )
Quiero decir: seleccionar inputs del tipo radio, del grupo 1, y ver si están chequeados.
Código HTML:
...
name = $(this).attr('name');
type = $(this).attr('type');
$("input:"+ $(this).attr('type'))
group = "input:"+ type +"[name="+ name +"]";				
								
			
if($(group+":checked").length==0)
{

// validación: return true o false.

}
Me dan una mano?