if (deposit != 0) {
if (jcicilan - jdiskon > deposit) {
alert("Jumlah pembayaran tidak boleh lebih dari deposit! Rp. " +deposit);
Validator.FocusErrorById("jcicilan");
return false;
}
}
Solusi :
if (+x > +deposit) {
//...
}
Atau
if (Number(x) > Number(deposit)) {
// ...
}
Sekian dan terima kasih. Haha
Post a Comment