JSFiddle - React, Tailwind, and code Playground

by jscheel

HTML

<script src="https://cdn.rawgit.com/stripe/jquery.payment/master/lib/jquery.payment.js"></script>
<label for="num">Restricted to Num</label>
<input type="numeric">
<br><br>
<textarea id="log" rows="6" cols="30"></textarea>

JavaScript

$(document).ready(function(){
    $('input').payment('restrictNumeric');
    $('input').on('change', function(){
        $('#log').html($('#log').html() + "change\n");
    });
});