Skip to content

Instantly share code, notes, and snippets.

@fluidsonic
Created September 20, 2018 12:13
Show Gist options
  • Select an option

  • Save fluidsonic/eb18975ec2a4ea545bdedbb5834b25a6 to your computer and use it in GitHub Desktop.

Select an option

Save fluidsonic/eb18975ec2a4ea545bdedbb5834b25a6 to your computer and use it in GitHub Desktop.
Move cursor in contenteditable HTML element to the end
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