Lo termine "resolviendo" de esta manera
Código Javascript
:
Ver original$('#precio').keyup(function(event) {
// skip for arrow keys
if(event.which >= 37 && event.which <= 40) return;
// format number
$(this).val(function(index, value) {
return value
.replace(/(\d)(?=(\d{3})+\.)/g, "$1,")
;
});
});
Aunque no lo hace automaticamente sino hasta que coloco el punto decimal.