Skip to content

Instantly share code, notes, and snippets.

@mcotton
Created July 10, 2011 05:14
Show Gist options
  • Save mcotton/1074299 to your computer and use it in GitHub Desktop.
Save mcotton/1074299 to your computer and use it in GitHub Desktop.
JavaScript slugify
function slugify(text) {
text = text.replace(/[^-a-zA-Z0-9,&\s]+/ig, '');
text = text.replace(/-/gi, "_");
text = text.replace(/\s/gi, "-");
return text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment