Forum Discussion

3 Replies

  • Use the IOL technique with this essential code:
    $("form[name=editform] input[type=text], form[name=editform] textarea").on("change", function() {
      $(this).val($(this).val().toUpperCase());
    });
    Here is a screenshot captured after blurring each field and manually applying the above code through the console::



    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.
  • Dan will this change any previous type fields to all caps with the page is opened after it was saved with lower case