mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
7 lines
139 B
JavaScript
7 lines
139 B
JavaScript
'use strict';
|
|
|
|
$(function() {
|
|
$('input.rx_ev_number').on('input', function() {
|
|
this.value = this.value.replace(/[^0-9]/g, '');
|
|
});
|
|
});
|