
13/09/2012, 13:44
|
 | | | Fecha de Ingreso: febrero-2012 Ubicación: Calera Avellaneda, Buenos Aires, Argentina, Argentina
Mensajes: 95
Antigüedad: 13 años 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');
}
});
} |