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.
<html>
<head>
<title>hh mm diff</title>
<script name="javascript">
function diff(d1, d2) {
d1 = new Date(d1);
d2 = new Date(d2);
diffS = (d2 - d1) / 1000;
diffM = Math.floor(diffS / 60);
remS = diffS % 60;
return (diffM + ":" + remS);
}
</script>
<style type="text/css">
</style>
<meta name="author" content="?">
<meta name="keywords" content="?">
<meta name="description" content="?">
</head>
<body onload="">
<form name="" action="" method="">
Enter two dates in this format: MM/DD/YY HH:MM:SS
<p />
<input type="text" name="t1" value="" />
<input type="text" name="t2" value="" />
<input type="button" name="" value="diff();" onclick="alert('mm:ss between date 1 & 2: ' + diff(this.form.t1.value,this.form.t2.value));" />
</form>
</body>
</html>