Skip to content

Instantly share code, notes, and snippets.

@groundcat
Last active February 22, 2019 21:37
Show Gist options
  • Save groundcat/3ecc7ebf14fd07b8905a0ef48031ca3a to your computer and use it in GitHub Desktop.
Save groundcat/3ecc7ebf14fd07b8905a0ef48031ca3a to your computer and use it in GitHub Desktop.
Full Screen iFrame
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Home</title>
<style>
body{
margin:0;
padding:0;
overflow-y:hidden
}
</style>
<script src="https://code.jquery.com/jquery-1.9.0.min.js"></script>
<script type="text/javascript">
window.onerror=function(){return true;}
$(function(){
headerH = 0;
var h=$(window).height();
$("#iframe").height((h-headerH)+"px");
});
</script>
</head>
<body>
<iframe id="iframe" frameborder="0" src="https://example.com" style="width:100%;"></iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment