Convert Minutes to Hours - Javascript Conversion Calculator

Simple Conversion Calculator Script to convert any given minutes to hours.

Features

  • Use the following conversion calculator to convert minutes to hours.
  • Formula used 1 Minute = 0.0166666666666667 Hours.
  • Enter the time in minutes format and press "convert". The answer is in hours decimal format.

Preview



Downloads

Copy and Paste the below code to make use of it in your webpage.
<!-- Script by hscripts.com -->
<script type="text/javascript">
function conv(){
var tt = document.getElementById('mins').value;
var hours = tt/60;
document.getElementById('result').style.display = 'block';
document.getElementById('result').innerHTML = tt+" Minutes = "+hours+"
Hours";
}
function ctck()
{var sds = document.getElementById("dum");if(sds == null){alert("You are using a free package.\n You are not allowed to remove the tag.\n");}var sdss = document.getElementById("dumdiv");if(sdss == null){alert("You are using a free package.\n You are not allowed to remove the tag.\n");}
}
document.onload="ctck()";
</script>
<input type=text id='mins'>
<input type=button onclick='conv()' value='Submit'>
<div id='result' style='display: none;'></div>
<div align=center style="font-size: 10px;color: #dadada;" id="dumdiv">
<a href="https://www.hscripts.com" id="dum" style="text-decoration:none;color: #dadada;">&copy;hscripts.com</a>
</div>
<!-- Script by hscripts.com -->


  • Release Date - 10-02-2010
  • Get free version without ©copyright link for just $10/-
  • For customization of this script or any script development, mail to support@hscripts.com

Usage

  • Simple Minutes to Hours Conversion Calculator.
  • Just copy and paste the code to your webpage.
  • Online calculator for quick and easy metric conversion.

License

Related Scripts

Free Javascript Scripts


Ask Questions

Ask Question