JSFiddle - React, Tailwind, and code Playground

by dandiebolt

HTML

<script src="https://raw.github.com/cowboy/jquery-postmessage/master/jquery.ba-postmessage.js"></script>
<span id="click">click</span>


<iframe id='xd_frame' src='http://jsbin.com/ojewat/7' width='500' height='250'></iframe>

JavaScript

$.receiveMessage(function(e){
  alert( e.data );
 },
 'http://jsbin.com/ojewat/5'
);

$("#click").click(function(){
    alert("f");
  var src = 'http://jsbin.com/ojewat/7#' + encodeURIComponent( document.location.href );
  $.postMessage( 'toggle_content', src, $("#xd_frame").get(0).contentWindow );
  return false;
});