hi,
i have this javascript function that works ok in firefox, but in i.e. it returns NaN. is there anyway to fix this?
thanks.
thanks.
i have this javascript function that works ok in firefox, but in i.e. it returns NaN. is there anyway to fix this?
thanks.
Code:
function changeit(me)
{
var amount;
var model;
var amtx;
model = me.value;
if (model == "x20")
{
amtx = "100.00";
}
amount = parseInt(amtx);
}