Convert Values to UPPERCASE (Option A)
How to convert field input to UPPERCASE after leaving field selection
Last updated
Was this helpful?
How to convert field input to UPPERCASE after leaving field selection
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").focusout(function () {
this.value = this.value.toUpperCase();
});// License Plate 1
$("input#field_232").focusout(function () {
this.value = this.value.toUpperCase();
});})/*comment*/
$(document).on('knack-page-render.any', function(event, page) {
$("input#field_232").focusout(function () {
this.value = this.value.toUpperCase();
});
})".kn-input-name input""input#field_232"