Necesito un script que auto complete las fechas dd-mm-YYYY con "-" mientras escribo e intentado algo pero no me funca
Código:
function Guion(e)
{
tecla = e.keyCode? e.keyCode : e.charCode;
if (!(tecla < 48 || tecla > 57))
{
if (((e.value.length+1)==3)||((e.value.length+1)==6))
this.value += '-';
}else
window.event.keyCode=0;
}
Cita: <input name="fecha_mov" type="text" id="fecha_mov" value="" onkeypress="Guion(this.value);" size="10" maxlength="10" />
Ayuda , gracias de antemano