JSFiddle - React, Tailwind, and code Playground
by robertjd
HTML
<textarea id="htmllies"></textarea>
JavaScript
$(document).ready(function(){
$('#htmllies').on('input',function(e){
$('#_encodeURIComponent').input(encodeURIComponent(e.target.value));
console.log(escape(e.target.value));
});
});