Skip to content

Instantly share code, notes, and snippets.

@techmuzz
Created May 22, 2019 00:52
Show Gist options
  • Save techmuzz/b1d78dae0f8fb920fb7aa1ab2c057cb9 to your computer and use it in GitHub Desktop.
Save techmuzz/b1d78dae0f8fb920fb7aa1ab2c057cb9 to your computer and use it in GitHub Desktop.
Embed Flipboard Magazine On Your Website In Two Steps - https://www.techmuzz.com/how-to/embed-flipboard-magazine-on-your-website-in-two-steps/
<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