Ver Mensaje Individual
  #4 (permalink)  
Antiguo 13/09/2012, 13:44
Avatar de Ex_shadow
Ex_shadow
 
Fecha de Ingreso: febrero-2012
Ubicación: Calera Avellaneda, Buenos Aires, Argentina, Argentina
Mensajes: 95
Antigüedad: 12 años, 2 meses
Puntos: 4
Respuesta: Problema eventos input text ajax

function Email(){

var Campo = $('#Email');

// --- evento keyup
Campo.keyup(function(){

if(//todo ok){
$(this).css('background','green');
}
});

// --- evento blur
Campo.blur(function(){

if(//todo mal){
$(this).css('background','red');
}else{
$(this).css('background','green');
}
});

}