Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function setColon()
{
var strTime = document.caseLog.time.value;
var strTimeL = strTime.length
if (strTimeL==4)
{
document.caseLog.time.value = strTime.substr(0,2) + ':' + strTime.substr(2,4)
}
if (strTimeL==3)
{
document.caseLog.time.value = strTime.substr(0,1) + ':' + strTime.substr(1,3)
}
}