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('input', function(){ $(this).val( $(this).val().toLowerCase() ); }) });