Created
September 20, 2018 12:13
-
-
Save fluidsonic/eb18975ec2a4ea545bdedbb5834b25a6 to your computer and use it in GitHub Desktop.
Move cursor in contenteditable HTML element to the end
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const contenteditableElement = … | |
| const selection = window.getSelection() | |
| selection.selectAllChildren(contenteditableElement) | |
| selection.collapseToEnd() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment