Skip to content

Instantly share code, notes, and snippets.

@jaybill
Created July 16, 2013 21:12
Show Gist options
  • Save jaybill/6014860 to your computer and use it in GitHub Desktop.
Save jaybill/6014860 to your computer and use it in GitHub Desktop.
var f = "mailto:foo@bar";
if (f.substring(0,"mailto".length) == "mailto")
{
var email = f.substring( "mailto".length + 1, f.length);
console.log(email)
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment