JSFiddle - React, Tailwind, and code Playground

by orjan

HTML

<div id="x">X</div>

JavaScript

if ($('#x').length){
    var name = $('#x').text();
    modal();
}
function modal() {
    alert(name);   
}