JSFiddle - React, Tailwind, and code Playground

by Tyriar

HTML

<div id="divID">asdlkasd hello world asdas</div>

JavaScript

var text = document.getElementById("divID").innerText;

// find and replace
document.getElementById("divID").innerText = text.replace('hello world', 'hello big world');