3
I got the following jQuery:
$(".quantidade_lotes").change(function() {
var quantidade_linhas = $("#quantidade_linhas").val();
var quantidade_lotes = $(".quantidade_lotes").val();
var quantidade_dividida = (quantidade_linhas/quantidade_lotes);
});
In this, quantity_lines is = 17, quantity_lots = 5, and quantity_divided = 3.4. I need the result to be 4, always renting up. How can I do this?
In fact, the right thing would be: Rent down and what’s left, I play in the last lot... I got to understand @dsantoro?
– Sr. André Baill