Skip to content

Instantly share code, notes, and snippets.

@heathcliff
Created April 23, 2014 16:00
Show Gist options
  • Save heathcliff/11221273 to your computer and use it in GitHub Desktop.
Save heathcliff/11221273 to your computer and use it in GitHub Desktop.
slugify jQuery extension
jQuery.extend({
slugify: function(string) {
return $.trim(string)
.toLowerCase()
.replace(/[^\w ]+/g,'')
.replace(/ +/g,'-')
.replace(/\-{2,}/g,'-');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment