Ver Mensaje Individual
  #4 (permalink)  
Antiguo 27/01/2015, 14:20
oscurogt
 
Fecha de Ingreso: agosto-2013
Ubicación: Guatemala
Mensajes: 137
Antigüedad: 10 años, 8 meses
Puntos: 4
Respuesta: Como agregar el decimal

Lo termine "resolviendo" de esta manera

Código Javascript:
Ver original
  1. $('#precio').keyup(function(event) {
  2. // skip for arrow keys
  3.   if(event.which >= 37 && event.which <= 40) return;
  4.  
  5. // format number
  6.   $(this).val(function(index, value) {
  7.     return value
  8.       .replace(/(\d)(?=(\d{3})+\.)/g, "$1,")
  9.     ;
  10.   });
  11. });

Aunque no lo hace automaticamente sino hasta que coloco el punto decimal.