derkenuke perdona que estoy un poco lento xD:
el Resultados es este:
Código:
function anadir(num) {
hoy = new Date();
for (i=0; i<num; i++)
while (i<num) {
hoy.setTime(hoy.getTime()+24*60*60*1000); // añadimos 1 día
if (hoy.getDay() != 6 && hoy.getDay() != 0)
i++;
}
mes = hoy.getMonth()+1;
if (mes<10) mes = '0'+mes;
fecha = hoy.getDate()+ '/' + mes + '/' + hoy.getFullYear();
document.getElementById('FECHA_PREVISTA').value = fecha;
}
Lo que tuve que poner fue esto:
while (i<num) {
hoy.setTime(hoy.getTime()+24*60*60*1000); // añadimos 1 día
if (hoy.getDay() != 6 && hoy.getDay() != 0)
i++;
}