Skip to content

Instantly share code, notes, and snippets.

@biganth
Last active April 1, 2016 12:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save biganth/247d1b5ae748bfbfa621 to your computer and use it in GitHub Desktop.
Save biganth/247d1b5ae748bfbfa621 to your computer and use it in GitHub Desktop.
Create urls based on blog post title
//Turns "My first blog post" into my-first-blog-post
function slugIt() {
let title = document.getElementById("title");
let slug = document.getElementById("slug");
slug.value = title.value.replace(/ /g, "-").toLowerCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment