function comprobarFecha(fec) { f=fec.split('/'); fec=f[1]+'/'+f[0]+'/'+f[2]; hoy= new Date(); fecha= new Date(fec); if(fecha<=hoy) alert('Fecha incorrecta'); }