6
Guys, I have a slightly complicated question for myself that I’m a beginner.. I’m developing a system where the user can select the amount of installments they want to split their purchase.. until then ok.. however a field has been requested where the user can enter the amount he can pay per installment.. and when filling automatically it must identify which value divided by 12 comes closer to the value filled. I have the following code so far...
$(document).ready(function () {
// Aqui ele pega o valor do campo "Você pode pagar.." -> aqui que preciso de ajuda!
$('#parcelaAprox').change(function() {
console.log($('#parcelaAprox').val());
console.log($('#PrecoManager').val().replace(',', '.') / 12);
$.each(test, function (index, item) {
console.log(index);
});
});
// Aqui ao carregar a página como padrão o valor de parcelas é 12
var vParcela = $('#PrecoManager').val().replace(',', '.') / $('#nParcelas').val();
vParcela = parseFloat(vParcela).toFixed(2).replace('.', ',');
$('#vParcela').html(vParcela);
// Aqui ele divide o valor do produto pela quantidade de parcelas selecionadas
$('#nParcelas').change(function () {
var vParcela = $('#PrecoManager').val().replace(',', '.') / $('#nParcelas').val();
vParcela = parseFloat(vParcela).toFixed(2).replace('.', ',');
$('#vParcela').html(vParcela);
});
});
Thank you!
I didn’t understand your doubt!
– novic