JSFiddle - React, Tailwind, and code Playground

by sauravmishra

HTML

<body>
    <textarea id="text" name="text" rows=9 cols=30 placeholder="Type Notes">A whole bunch
     of text with
     line breaks goes here</textarea><a href="#" onclick="editText('text');return false;">edit</a>
    </body>

JavaScript

function editText(editThis) {
    alert(editThis);
    //alert("hi");
    var toedit = document.getElementById(editThis).innerHTML;
    alert(toedit);
    toedit = toedit.replace('whole', 'few');
    alert(toedit);
}