Created
December 25, 2012 21:12
-
-
Save nrn/4375497 to your computer and use it in GitHub Desktop.
Bookmarklet to mail a link/selected text
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function () { | |
var selected = getSelection().toString(); | |
if (selected !== "") selected = '"...\n'+selected+'\n..."\n'; | |
location.href = 'mailto:?SUBJECT='+encodeURIComponent(document.title)+'&BODY='+encodeURIComponent('\n'+location.href+'\n'+selected); | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bookmarklet from @nrn for @euler, merry christmas!