I got a javascript code like this to validate the file extension for my users when they upload pics on my server.It should allow both .jpg and .jpeg photos however only .jpg files are accepted and it invalidates if the photo ends with .jpeg.Here's the code:
function validate(x) {
var extensions = new Array("jpg", "jpeg");
var pos = x.lastIndexOf('.') + 1;
var ext = x.substring(pos, x.length);
var final_ext = ext.toLowerCase();
for (i = 0; i < extensions.length; i++) {
if (extensions[i] != final_ext) {
return 0;
break;
}
return 1;
}
}
what do you think is the problem?
