mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +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, '');
|
|
});
|
|
});
|