JSFiddle - React, Tailwind, and code Playground

by matmuchrapna

HTML

outer <br />
<iframe id="iframe" src="http://musicmp3.ru/"></iframe>

CSS

#iframe {
    width: 80%;
    height: 500px;
    margin: 20px auto;
    display: block;
}

JavaScript

$("#iframe").load(function() {
    $("#iframe").contents().on('click', 'a', function() {
        alert(this.href);
    }); 
});