I have an input which I am binding to keyup()
On each keyup, I want it to:
$('.my-input').keyup(function() { this.value = this.value.replace(/[^0-9a-zA-Z-]/g, '').toLowerCase(); });