How could I force the text in the \"username\" text input to be lower-case regardless of what user types?
input
Using jquery assuming that the input ID is username
$(document).ready(function(){ $("#username").on('change keyup paste',function(){ $(this).val($(this).val().toLowerCase()); }) })