JSFiddle - React, Tailwind, and code Playground

HTML

<div id="girl_develop_it">This is some text!</div>

JavaScript

// Select the girl_develop_it div
var gdi_div = document.getElementById("girl_develop_it");

// Display the innerHTML
alert(gdi_div.innerHTML);