Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<script language="javascript">

$(function()
{
$("#txtdate1").blur(
function ()
{
var date = $("#txtdate1").val();
$("#txtdate2").val(date);
});
$("#txttime1").blur(
function ()
{
var time = $("#txttime1").val();
var hr= time.substring(0,2);
var min =time.substring(3,5);
var ampm= time.substring(6,8);
var newhr = Number(hr) +1;
if(newhr.toString ().length ==1)
{
newhr = "0"+newhr;
}
if(newhr==13)
{
newhr="01";
}
var newtime = newhr+":"+min+" ";
if(hr==11 && ampm=="AM")
ampm="PM";
else
{
if(hr==11 && ampm=="PM")
ampm="AM";
}

newtime=newtime+ampm;
$("#txttime2").val(newtime);
}

);
});
</script>

You might also like