JSFiddle - React, Tailwind, and code Playground
by Zoxon
HTML
<div id="wrap">
<iframe id="frame" src="http://diesel.elcat.kg/index.php?showtopic=48757076"></iframe>
</div>
<a href="http://diesel.elcat.kg/index.php?showtopic=48607792" class="change">Change url in iframe</a>
CSS
#wrap {
width: 600px;
height: 390px;
padding: 0;
overflow: hidden;
}
#frame {
width: 800px;
height: 600px;
border: 1px solid black;
}
JavaScript
$(document).ready(function () {
$(".change").click(function (event) {
$("#frame").attr("src", $(this).attr("href"));
event.preventDefault();
});
});