Tuesday, December 24, 2019

Kilogram To Ounce Converter in JavaScript

I wrote this program to ask the user to give kilogram value and then it will convert into ounce weight equivalent using JavaScript programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com
My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/




Sample Program Output


Program Listing

index.html

<html>
  <head>
   <title>Kilogram To Ounce Converter in JavaScript</title>
  </head>
  <body>
  <style>
      body {
       font-family: arial;
       font-size: 20px;
       font-weight: bold;
      }
   </style>
<script type="text/javascript">
   function forward() {
      with (document.convert) {
unit1.value = unit1.value.toString().replace(/[^\d\.eE-]/g,'');
if (unit1.value/0.0252 != 0) {
    unit2.value = (unit1.value/0.0252).toFixed(2);
}
      }
   }
   function backward() {
      with (document.convert) {
unit2.value = unit2.value.toString().replace(/[^\d\.eE-]/g,'');
if (unit2.value*0.0252 != 0) {
    unit1.value = (unit2.value*0.0252).toFixed(2);
}
      }
   }
</script>

<h4></h4>
<noscript><p><font color="red"><strong>Please enable Javascript
to use the unit converter</strong></font></p></noscript>
<form name="convert" style="font-size:1.3em;border:solid 1px #B7D7AF;border-radius:7px;background-color:#EEEEEE;margin-right:10px;padding-left:10px;padding-right:10px">
<br />
<tr>
<td><strong>Kilogram To Ounce Converter in JavaScript</strong></td></tr>
<table border="0" cellpadding="7" cellspacing="0">

<tr>
<td><input type="number" step="0.1" name="unit1" style="width:200px;font-size:1em" onchange="forward()" value=""></td><td><strong>Kilogram</strong></td></tr>
<tr><td><input type="number" step="0.1" name="unit2" style="width:200px;font-size:1em" onchange="backward()" value=""></td><td><strong>Ounce</strong></td></tr>
<tr><td><input type=button value="Convert" style="font-size:1em;margin-bottom:15px" onclick="forward()"></td></tr></table>
</form>
</body>
</html>



No comments:

Post a Comment