12:00 validering
Vil gerne kunne validere formatet 12:35Den må gerne validere : også.
function isTime(tid){
tid=String(tid);
tt=parseInt(tid.substring(tid,0,2),10);
mm=parseInt(tid.substring(tid,3,2),10);
if(isNaN(tt)||isNaN(mm)||tt>23||mm>59){
alert('Time format - HH:MM')
return false;
}
return true;
}
