ARTICLES > Javascript

[JQuery] Convert input text to upper case on key press Turn Back

2018-06-12 23:52:23

$('input[name=test]').keyup(function(){
    this.value = this.value.toUpperCase();
});
Turn Back