Simple Javascript Ratio Calculator that instantly calculates the ratio between two given numbers.
Features
a) Used to find the ratio of the given values.
b) Just copy and paste the code in to your website to perform ratio calculations.
c) Simple javascript calculator.
<!-- Script by hscripts.com -->
<!-- Copyright of HIOXINDIA -->
<!-- More scripts @www.hscripts.com -->
<script type="text/javascript">
function find_ratio()
{
var x=document.getElementById("x1").value;
var y=document.getElementById("y1").value;
var gcd=calc(x,y);
var r1=x/gcd;
var r2=y/gcd;
var ratio=r1+":"+r2;
document.getElementById("res").value=ratio;
}
function calc(n1,n2)
{
var num1,num2;
if(n1 < n2){
num1=n1;
num2=n2;
}
else{
num1=n2;
num2=n1;
}
var remain=num2%num1;
while(remain>0){
num2=num1;
num1=remain;
remain=num2%num1;
}
return num1;
}
function isInteger(s,iid)
{
var i;
s = s.toString();
for (i = 0; i < s.length; i++)
{
var c;
if(s.charAt(i)==".")
{
}
else
{
c = s.charAt(i);
}
if (isNaN(c))
{
alert("Given value is not a number");
document.getElementById(iid).value="";
return false;
}
}
return true;
}
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>
<!-- Script by hscripts.com -->
For customization of this script or any script development, contact us at support@hscripts.com
Usage
a) Copy and paste the javascript code into your page and make use of this ratio calculator.
b) Here,the function "find_ratio()" provides the ratio for the given numbers.
License
- The javascript (misspelled as java script) is given under GPL License
- i.e. Free use for those who use the codes as it is.
- Free, if your modification does not remove our copyright information and links.
- Click Here for detailed license information.
- You can purchase the script if your requirements does not meet our GPL License terms.