Skip to content

Instantly share code, notes, and snippets.

@tmslnz
Created August 16, 2015 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmslnz/67e2899416ed8598e7c6 to your computer and use it in GitHub Desktop.
Save tmslnz/67e2899416ed8598e7c6 to your computer and use it in GitHub Desktop.
Get whole paragraph from text selection
// Discussion here: http://stackoverflow.com/questions/845390/javascript-to-get-paragraph-of-selected-text-in-web-page
var selection = window.getSelection();
var textNode = selection.anchorNode.parentNode;
var text = textNode.innerHTML;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment