Skip to content

Instantly share code, notes, and snippets.

@kheniparth
Created November 27, 2014 19:17
Show Gist options
  • Save kheniparth/06480a75f0b8033ffa8c to your computer and use it in GitHub Desktop.
Save kheniparth/06480a75f0b8033ffa8c to your computer and use it in GitHub Desktop.
Script to embed flipboard magazine on any webpage.
<script>
(function () {
var width = 0,
flipboard = document.getElementById('flipboard');
width = flipboard.getBoundingClientRect().width ? flipboard.getBoundingClientRect().width : flipboard.offsetWidth;
if (width > 800) {
flipboard.innerHTML = '<iframe width="100%" frameborder="0" height="600px" marginheight="0" marginwidth="0" scrolling="no" src="https://flipboard.com/section/the-internet-of-things-bn8l9H"></iframe>'
}
})();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment