-
-
Save git2358/1a708b1c8c1043f8a035dfe4722a6d8b to your computer and use it in GitHub Desktop.
Bookmarklet to mail a link/selected text
This file contains hidden or 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