Skip to content

Instantly share code, notes, and snippets.

@gregdangelo
Created April 9, 2012 11:54
Show Gist options
  • Save gregdangelo/2343026 to your computer and use it in GitHub Desktop.
Save gregdangelo/2343026 to your computer and use it in GitHub Desktop.
Support: IE6, Fx2, Opera9, Safari Cross browser getSelection().
function getSelection() {
return (!!document.getSelection) ? document.getSelection() :
(!!window.getSelection) ? window.getSelection() :
document.selection.createRange().text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment