JSFiddle - React, Tailwind, and code Playground

by Ronny

HTML

<p>wiuefiuwaheifuwaifiuhiwuhf<a href="javascript:;">fwaefwaefwaef</a>

CSS

a {font-size: 400%;}
body {background: #999; color: #fff;}
iframe {border: none;}

JavaScript

$('a').mouseenter(function(){
    var ifrm = $('<iframe src="http://rg/clients/3base/cemmerce-test/index.html" style="display: none;" onload="this.style.display=\'block\';"></iframe>');
    ifrm.appendTo('body');
});

$('a').mouseleave(function(){
    $('iframe').remove();
});