JSFiddle - React, Tailwind, and code Playground

HTML

<iframe id = "Preview" src ="https://jsfiddle.net/"></iframe>
<button onclick = "changeSRCtoLocal()">Click me</button>
<br>
<span>click at the button to change html content of iframe</span>
<script>
function changeSRCtoLocal(){
  document.getElementById('Preview').src = "about:blank";
	    var iframe = document.getElementById('Preview'),
    iframedoc = iframe.contentDocument || iframe.contentWindow.document;

iframedoc.body.innerHTML = "<html>To preview the xml/gml file visit <a href = 'about:blank' target = '_blank'></a></html>";
alert()

}
</script>