Here is the code snippet I am working with:
<input type="text" style="text-transform: uppercase" />
When using this code, characters like ü
are transformed to Ü
. However, I want ü
to be transformed to U
, so for example, Gülay
should become GULAY
. Does anyone know how I can achieve this transformation?