Skip to content

Instantly share code, notes, and snippets.

@juliocesar
Created May 23, 2011 06:11
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juliocesar/986306 to your computer and use it in GitHub Desktop.
Save juliocesar/986306 to your computer and use it in GitHub Desktop.
Get the current selection in JS
function selection() {
return window.getSelection ? window.getSelection().toString() :
document.getSelection ? document.getSelection().toString() :
document.selection ? document.selection.createRange().text :
false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment