Skip to content

Instantly share code, notes, and snippets.

@unrealapex
Created February 1, 2022 17:52
Show Gist options
  • Select an option

  • Save unrealapex/defe8becc7e1450e30eb5df90d21937e to your computer and use it in GitHub Desktop.

Select an option

Save unrealapex/defe8becc7e1450e30eb5df90d21937e to your computer and use it in GitHub Desktop.
// taken from here: https://developer.mozilla.org/en-US/docs/Web/API/Document/activeElement
function onMouseUp(e) {
const activeTextarea = document.activeElement;
const selection = activeTextarea.value.substring(
activeTextarea.selectionStart, activeTextarea.selectionEnd
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment