Skip to content

Instantly share code, notes, and snippets.

@kalysr
Created November 23, 2018 02:52
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 kalysr/adfa55ec15362e7a4e0f9769eb8c8b58 to your computer and use it in GitHub Desktop.
Save kalysr/adfa55ec15362e7a4e0f9769eb8c8b58 to your computer and use it in GitHub Desktop.
When you using contenteditable div add this function for clear format
const onPaste = (e) => {
e.preventDefault();
let text = e.clipboardData.getData("text/plain");
document.execCommand("insertText", false, text);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment