JSFiddle - React, Tailwind, and code Playground
by stevea
HTML
<button id="submit">Submit</button>
<div id="box">
<div class="content" contenteditable="TRUE"></div>
</div>
CSS
div#box{
width:300px;
height:100px;
background-color:beige;
}
div.content {
width: 200px;
height:75px;
background-color:yellow;
}
JavaScript
$(function() {
$('#submit').click(function() {
debugger;
// var comments$ = $('#box').find('.content').text();
// x=1;
});
};