Javascript String stripNonAlphanumeric()
stripNonAlphanumeric()
String.prototype.stripNonAlphanumeric = function() { return this.replace(/[^0-9a-z]/gi, ''); };