JSFiddle - React, Tailwind, and code Playground

by billjohnston4

HTML

<div class='container'>
    <div class='row'>
        test
    </div>
    <div class='row'>
        <iframe width='100%' height='200px' src='http://digg.com'></iframe>
    </div>
</div>

CSS

@import url(//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css)

JavaScript

$(function(){
    $('iframe').on('load', function(){
        console.log($(this).contents().get(0).location.href);
    });
});