defbyte
8/8/2011 - 4:53 PM

String.slugify

String.slugify

// Add "slugify" method to String
String.prototype.slugify = function(){
	return this.replace(/\s+/g,'-').replace(/[^a-zA-Z0-9\-]/g,'').toLowerCase();
};