JSFiddle - React, Tailwind, and code Playground

by Felipe Alfaro

HTML

<div id="field" contenteditable="true">
  LELE
</div>


<button onclick="show()">
click here
</button>

CSS

div > * {
  margin: 15px 0 0 0 !important;
}

JavaScript

function show() {
	console.log(document.getElementById('field').innerText)
}