JSFiddle - React, Tailwind, and code Playground

by jpeter06

HTML

<input type="color">
<input id="entrada" type="text" value="casa">
</br>
<input id="salida" type="text" value="">
<button onclick="getInput()">
obtener
</button>

JavaScript

function getInput(){
	var entrada = document.getElementById('entrada');
	var salida = document.getElementById('salida');
  salida.value = "textContent: " + entrada.textContent;
}