viernes, 19 de agosto de 2016

Mascarilla con validación fecha

    < script src="js/jquery.maskedinput.js">
   



$("#hora, #horaAplicacionPruebas, #horaAprobacionPruebas, #horaAplicacionProduccion, #horaAprobacionProductivo, #horaAprobacionEstabilidad").blur(function() {
//alert ($(this).val());
if ($(this).val() != "__:__") {
var userInput = $(this).val().replace(/^([0-9])([0-9]):([0-9])_$/, "0$1:$2$3");

if(!userInput.match(/([0-1][0-9]|2[0-3]):[0-5][0-9]/)){
alert('Ingrese una hora válida');          
}else{
$(this).val(userInput);
return true;
};
} else {
return true;
}
}).mask("99:99");