update textarea result
by Steven Martin
HTML
<textarea id="text3" >THE QUICK BROWN FOX JUMPED OVER THE LAZY DOG.</textarea>
<input type="button" value="Click here" onclick="myFunction();" />
CSS
textarea {
width: 300px;
height: 50px;
margin: 10px;
}
JavaScript
function myFunction() {
var textElem = document.getElementById("text3").value;
var newText = textElem.replace("BROWN", "RED");
newText = newText.replace("FOX", "RABBIT");
newText = newText.replace("JUMPED", "LEAPED");
newText = newText.replace("LAZY", "SLEEPING");
document.getElementById("text3").value = newText;
}