Source Code:
(back to article)
Submit
Result:
Report an issue
<div id="content">This is some sample text for extraction.</div> <button onclick="extractText()">Extract and Manipulate</button> <script> function extractText() { const range = document.createRange(); const content = document.getElementById('content'); range.selectNodeContents(content); const extractedText = range.toString(); const manipulatedText = extractedText.replace('sample', 'example'); // Manipulating text alert(manipulatedText); } </script>