Files
30-seconds-of-code/snippets/getSelectedText.md
Isabelle Viktoria Maciohsek 8bf67754ce Make expertise a field
2022-03-01 20:21:45 +02:00

394 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
Get selected text browser beginner 2020-08-07T15:34:53+03:00 2020-10-19T22:49:51+03:00

Gets the currently selected text.

  • Use Window.getSelection() and Selection.toString() to get the currently selected text.
const getSelectedText = () => window.getSelection().toString();
getSelectedText(); // 'Lorem ipsum'