viernes, 19 de agosto de 2016

Campos obligatorios al vuelo

  $("input[name=bandAprobacionProductivo]").change(function(){ //alert($(this).val()); var f = new Date(); document.getElementById("fechaAprobacionProductivo").value = f.getFullYear() + "-" + ("0" + (f.getMonth()+1)).slice(-2) + "-" + ("0" + f.getDate()).slice(-2); document.getElementById("horaAprobacionProductivo").value = f.getHours() + ":" + ("0" + f.getMinutes()).slice(-2); $( "#idUsuariosApruebaProductivo" ).focus(); document.getElementById('idUsuariosApruebaProductivo').title = 'Usuario que aprueba productivo*'; document.getElementById('fechaAprobacionProductivo').title = 'Fecha aprobación productivo*'; document.getElementById('horaAprobacionProductivo').title = 'Hora aprobación productivo*'; $(".obligUAProd").text('*'); });