So I'm trying to have an input field where I can enter any characters, but then take the inputted value lowercase it, remove any non alphanumeric characters, leaving "." instead of spaces.
For example, If I enter:
Earth is 70% water, -!*#$^^ & 30% LAnd
The output should be:
earth.is.70.water.30.land
Any idea how this can be done without masking with jQuery?