Trying to transform all input to Uppercase.
My first thought was doing it by adding some JS like:
input type="text" onkeyup="this.value = this.value.toUpperCase()
;
Doesn’t work as good as I’d like.
How could I target all ACF text fields in order to strtoupper them?
Targeting the input with CSS transform:uppercase doesn’t solve my issue as I need the strings to be saved as uppercase in the DB.