JSFiddle - React, Tailwind, and code Playground
HTML
<iframe src="http://jsbin.com/welcome/303/"></iframe>
<button>invia</button>
JavaScript
var it = document.querySelector("iframe"),
cw = it.contentWindow,
bt = document.querySelector('button');
bt.addEventListener('click', function(){
cw.postMessage('hello!', '*');
}, false);