Skip to content

Instantly share code, notes, and snippets.

@maxkostinevich
Created November 17, 2016 09:04
Show Gist options
  • Save maxkostinevich/0aec581972b714d88f25f279f59c1791 to your computer and use it in GitHub Desktop.
Save maxkostinevich/0aec581972b714d88f25f279f59c1791 to your computer and use it in GitHub Desktop.
JS Selected Text
$('.element').on('mouseup', function(event){
var selection;
if (window.getSelection) {
selection = window.getSelection();
} else if (document.selection) {
selection = document.selection.createRange();
}
selection.toString() !== '' && alert('"' + selection.toString() + '" was selected at ' + event.pageX + '/' + event.pageY);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment