I have the following code:
$('#txtFederalCantidad').mask('00000000', { reverse: true });
valorFederal = $('#txtFederalCantidad').val();
$('#txtMonto').mask('00000000', { reverse: true });
var Monto = $('#txtMonto').val();
var Total = (valorFederal / Monto) * 100;
var TotalMostrar = Total.toFixed(2);
$('#txtFederalCantidad').mask('00.00', { reverse: true });
$('#txtFederalCantidad').val(TotalMostrar);
Suppose that the variable "TotalShow" results in 1658.99, How can I go through the decimal point so that it appears as 16.5899?