Inches to Centimeters
Description: Change inches to centimeters and back using this short, sweet script. Very easy to use, just type in the number and click!
input.convert { color: #fff; background-color: #00009C; border: 1px insert #000; font-weight: bold; } input.boxes { border: 0em; } /* This script and many more are available free online at The JavaScript Source :: http://javascript.internet.com Created by: Delan Ahmad :: http://users.bmail.com.au/azabani/ */ function cnvrtb() { document.getElementById("theIBox").value=document.getElementById("theBox").value/2.54; } function cnvrta() { document.getElementById("theCBox").value=document.getElementById("theBox").value*2.54; }
|