THANK YOU!

Thank you for taking the time to contact us. We will be in touch shortly

$(document).ready(function () { $('.numeric').on('input', function () { let value = $(this).val(); $(this).val(value.replace(/[^0-9.]/g, '').replace(/^(\d*\.?\d*).*$/, '$1')); }); });