Could anyone help me with a script I've written. As part of an assignment I have to write checksums to validate various numbers (VISA,Euro Bank Notes) and if I got this going I could modify to validate the other requirements but can't see what I've done wrong.....I should add that this is my first time writing javascript!
I'm trying to use the first function to ensure that only numbers are entered but the script only runs as far as the loop.
As the script doesn't get passed the first loop I don't know if the 2nd function works.
function CCValidate()
{
var serial;
var valid = true;
serial =prompt("Please Enter A Credit Card Number For Validation", "4499228308017422");
if (serial.lenght()==0)
{
valid=false;
}
if (serial.lenght !=16)
{
valid=false;
}
var x;
for (x=0;x<16;x++)
{
parseInt(serial[x]);
if (x!>0 && x!<9)
{
valid=false;
}
}
}
return valid;
function CCChecksum()
{
var i;
var total=0;
var total = total+a;
for(i=0;i<16;i=i+2)
{
var a;
a=parseInt(serial[1]*2);
if (a>9)
{
a = a+'';
a = parseInt(a[0])+parseInt(a[1]);
}
}
var j;
parseInt(serial[15]);
{
j = serial[1]+serial[3]+serial[5]+serial[7]+serial[9]+serial[11]+serial[13]+serial[15];
}
var result=0;
result = total + j;
if (result %10=0)
{
alert("The Credit Card Number You Have Entered Is Valid");
}
else alert("The Number Entered Is Not A Valid Credit Card Number");
}
Any help would be greatly appreciated.