Skip to content

Instantly share code, notes, and snippets.

@JoeKeikun
Created April 3, 2015 07:25
Show Gist options
  • Save JoeKeikun/aab8c5874fd4720c3988 to your computer and use it in GitHub Desktop.
Save JoeKeikun/aab8c5874fd4720c3988 to your computer and use it in GitHub Desktop.
get selected text
$('div').mouseup(function() {
alert(getSelectedText());
});
function getSelectedText() {
if (window.getSelection) {
return window.getSelection().toString();
} else if (document.selection) {
return document.selection.createRange().text;
}
return '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment