Convert Values to UPPERCASE (Option B)
How to convert field input to UPPERCASE while entering characters
Last updated
Was this helpful?
How to convert field input to UPPERCASE while entering characters
Last updated
Was this helpful?
Was this helpful?
/*****************************************/
/*** Convert Field/Inputs to UpperCase ***/
/*****************************************/
$(document).on("knack-page-render.any", function (event, page) {//All Name Fields
$('.kn-input-name input').keyup(function(){
this.value = this.value.toUpperCase();
});//Specific Field
$('input#field_165').keyup(function(){
this.value = this.value.toUpperCase();
});})/*comment*/
$(document).on('knack-page-render.any', function(event, page) {
$('input#field_1047').keyup(function(){
this.value = this.value.toUpperCase();
});
})'.kn-input-name input''input#field_165'