Skip to content

Instantly share code, notes, and snippets.

@valueof
Created August 23, 2015 01:59
Show Gist options
  • Save valueof/b964ebcbd2c3b4219269 to your computer and use it in GitHub Desktop.
Save valueof/b964ebcbd2c3b4219269 to your computer and use it in GitHub Desktop.
var iframe = document.querySelector('#myid')
window.addEventListener('message', function (ev) {
var message = ev.data.split(':')
if (message[0] === iframe.id) {
iframe.style.height = message[1] + 'px'
iframe.style.width = message[2] + 'px'
}
})
iframe.contentWindow.postMessage('yo:' + iframe.id, '*')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment