JSFiddle - React, Tailwind, and code Playground
by mkurzweil
HTML
<form>
<input type="text" value="/components/com_facpmanagement/assets/els/icons/332753/Flash_0" id="imagename"/>
<input type="button" id="btn" value="GO" />
</form>
JavaScript
document.getElementById('btn').onclick = function() {
var val = document.getElementById('imagename').value,
src = 'https://develop.remote-access-tool.at' + val +'.png',
img = document.createElement('img');
img.src = src;
document.body.appendChild(img);
}