Skip to content

Instantly share code, notes, and snippets.

@brianpartridge
Created April 17, 2012 14:40
Show Gist options
  • Save brianpartridge/2406408 to your computer and use it in GitHub Desktop.
Save brianpartridge/2406408 to your computer and use it in GitHub Desktop.
Bookmarklet to email a link to the current page.
// javascript:javascript:%20function%20emailURL()%20{var%20r%20=%20%22you@example.com%22;var%20d%20=%20document;var%20x%20=%20%22mailto:%22%20+%20r%20+%20%22?subject=%22%20+%20d.title%20+%20%22&body=%22%20+%20d.location;window.location.href%20=%20x;}emailURL();void(0)
javascript: function emailURL() {
var r = "you@example.com";
var d = document;
var x = "mailto:" + r + "?subject=" + d.title + "&body=" + d.location;
window.location.href = x;
}
emailURL();
void(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment