Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>Using both</title>
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
- <script type="text/javascript" src="https://ceti-redesign.googlecode.com/files/jquery.xdomainajax.js"></script>
- <script type="text/javascript">
- $(function() {
- $.ajax({
- url: 'http://www.stackoverflow.com/',
- type: 'GET',
- success: function(data) {
- $("#content").contents().find('body').append(data.responseText);
- }
- });
- });
- </script>
- <style type="text/css">
- body {
- margin: 0;
- }
- #ontop {
- position: absolute;
- width: 100%;
- height: 10%;
- top: 0;
- bottom: 90%;
- background-color: yellow;
- }
- #content {
- position: absolute;
- width: 100%;
- height: 90%;
- top: 10%;
- bottom: 0;
- border: 0;
- }
- </style>
- </head>
- <body>
- <div id="ontop">Always on top</div>
- <iframe id="content"></iframe>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment