perubahan input jQuery saat mengetik

$(function() {
    $('input').keyup(function() {
        this.value = this.value.toLocaleUpperCase();
    });
});
Snippets