Skip to content

Instantly share code, notes, and snippets.

@GitHub30
Last active October 12, 2019 17:50
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 GitHub30/53fe7ed6eb7a4ac675b4ae93e20fd524 to your computer and use it in GitHub Desktop.
Save GitHub30/53fe7ed6eb7a4ac675b4ae93e20fd524 to your computer and use it in GitHub Desktop.
function insertAtCaret(text) {
if(!document.activeElement.setRangeText) return;
document.activeElement.setRangeText(
text,
document.activeElement.selectionStart,
document.activeElement.selectionEnd,
'end'
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment