Quill backend test

by jonahe

HTML

<iframe src="http://192.168.0.65:3000/quill?fmData=%3Ch1%3Ehehsa%3Ch1%3E">
</iframe>

<textarea rows="4" cols="50" id="fm_data_input" type="text" onchange="window.fmEncode()"></textarea>

<h3>
  encoded: 
</h3>
<div id="encoded_output">
</div>

JavaScript

window.fmEncode = function fmEncode() {
	const elOutput = document.querySelector("#encoded_output");
  const inputValue = document.querySelector("#fm_data_input").value;
  elOutput.innerHTML = encodeURIComponent(inputValue);
}