Skip to content

Instantly share code, notes, and snippets.

@ifirmawan
Created July 30, 2018 04:28
Show Gist options
  • Save ifirmawan/79a0fc6e11ef2cd19408cbebe08e8443 to your computer and use it in GitHub Desktop.
Save ifirmawan/79a0fc6e11ef2cd19408cbebe08e8443 to your computer and use it in GitHub Desktop.
Input auto format number from https://jsfiddle.net/LM9zZ/2/
$(document).ready(function(){
$("#formattedNumberField").on('keyup', function(evt){
if (evt.which != 110 ){//not a fullstop
var n = parseFloat($(this).val().replace(/\,/g,''),10);
$(this).val(n.toLocaleString());
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment