Converting input to lowercase
![](https://i.imgur.com/MhY1ULJb.png)
renzlorenzz
11 Mar 2017, 09:19var res = str.toLowerCase();
I just found this but I don't know how to use it with this code {squiffy.set("buzzans1", jQuery("#buzzinput1").val());}
![](https://i.imgur.com/MhY1ULJb.png)
renzlorenzz
15 Mar 2017, 13:26I found a way to make inputs into lowercase,.
<input type="text" onkeyup="this.value = this.value.toLowerCase();">
this is the easiest way I can find. just adding this line on your input. onkeyup="this.value = this.value.toLowerCase();"