I have the following function:
function distribucion_referencia(value)
{
var pago_total=cantidad_pagar_total.value;
alert(pago_total/value);
var pago_fracción = "" + (pago_total/value);
$("#cantidad_rb_1").text(pago_fracción);
...}
The amount found in pago_fracción
I want to print it in a input
as a monetary amount, only I can not pass that data to PHP
.