JSFiddle - React, Tailwind, and code Playground

by calder12

HTML

<div id="div-one">
<select id="test">
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>

</div>

JavaScript

/* const newSelect = document.getElementById('test') */
/* const addOne = newSelect.cloneNode(true) */
/* const myDiv = document.getElementById('div-one') */
/* myDiv.appendChild(newSelect) */
var test = document.createElement("p")
test.innerHTML('hi')
document.body.appendChild('<p>hi</p>')