Skip to content

Instantly share code, notes, and snippets.

@mathieuancelin
Created November 20, 2012 08:55
Show Gist options
  • Save mathieuancelin/4116818 to your computer and use it in GitHub Desktop.
Save mathieuancelin/4116818 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<iframe id="myAppframe" src="http://xxx.xxx.xxx.xxx/myApp"></iframe>
<script>
$(document).ready(function() {
$("#myAppframe").contents().find("myAppFooter").remove();
$("#myAppframe").contents().find("myAppHeader").remove();
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment