JSFiddle - React, Tailwind, and code Playground

by musicreader

HTML

<div id="test_div">
  <a href="javascript:void(0)" id="test_button">Test</a><br/>
  <iframe id="iframe" src="https://www.nu.nl"></iframe>
</div><br/>

JavaScript

console.log("test init");
document.getElementById("test_button").onclick = function() {
  console.log("test");
  var iframe = $("#iframe");
  iframe.remove();
  $("#test_div").empty();
  $("#test_div").append(iframe);
}