Forum Discussion
_anomDiebolt_
8 years agoQrew Elite
Use the IOL technique with this essential code:
There are two text and two text multi-line fields on the form. I wrote the code to capatalize each field after the field was changed. It would also make the changes on a letter by letter basis.
$("form[name=editform] input[type=text], form[name=editform] textarea").on("change", function() {Here is a screenshot captured after blurring each field and manually applying the above code through the console::
$(this).val($(this).val().toUpperCase());
});
There are two text and two text multi-line fields on the form. I wrote the code to capatalize each field after the field was changed. It would also make the changes on a letter by letter basis.