Skip to content

Instantly share code, notes, and snippets.

@cuheguevara
Created February 20, 2013 08:02
Show Gist options
  • Save cuheguevara/4993810 to your computer and use it in GitHub Desktop.
Save cuheguevara/4993810 to your computer and use it in GitHub Desktop.
Membuat File input hanya bisa memasukan Bilangan,
$(function ($) {
$.fn.forceNumeric = function () {
return this.each(function () {
$(this).keyup(function() {
if (!/^[0-9]+$/.test($(this).val())) {
$(this).val($(this).val().replace(/[^0-9]/g, ''));
}
});
});
};
});
// Usage example: $('input.numeric').forceNumeric();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment