yo estoy intentanto esto hasta el momento sin refultados
Código PHP:
function evalRadio(){
var count = 0;
//Get the required fields for TextAreas and Inputs and Selects
var fields = $("input:radio.required");
if (fields.checked == true){
$.each(fields, function(){
if ( $(this).is(':checked') ) {
$(this).css({'background-color' : '#FFF2DF', 'border' : '1px solid #FF9900'});
count = count + 1;
} else {
$(this).css({'background-color' : '#FFF', 'border' : '1px solid #CCC'});
}
});
if (count != 0){
return 'not go';
} else {
return 'go';
}
} else {
return 'go';
}
}