| 1 | <!DOCTYPE html> |
|---|
| 2 | <!-- |
|---|
| 3 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. |
|---|
| 4 | For licensing, see LICENSE.html or http://ckeditor.com/license |
|---|
| 5 | --> |
|---|
| 6 | <html> |
|---|
| 7 | <head> |
|---|
| 8 | <title>Replace Textarea by Code in iframe</title> |
|---|
| 9 | <meta charset="utf-8"> |
|---|
| 10 | <style> |
|---|
| 11 | body, html, div { |
|---|
| 12 | height: 100%; |
|---|
| 13 | width: 100%; |
|---|
| 14 | margin: 0 auto; |
|---|
| 15 | } |
|---|
| 16 | |
|---|
| 17 | div { |
|---|
| 18 | overflow: hidden; |
|---|
| 19 | } |
|---|
| 20 | |
|---|
| 21 | </style> |
|---|
| 22 | </head> |
|---|
| 23 | <body> |
|---|
| 24 | <div> |
|---|
| 25 | <iframe id="myframe" style="display:none;" src="./replacebyclass.html" width="100%" height="100%"></iframe> |
|---|
| 26 | </div> |
|---|
| 27 | <script> |
|---|
| 28 | window.setTimeout(function(){ |
|---|
| 29 | window.document.getElementById('myframe').style.display=''; |
|---|
| 30 | },3000); |
|---|
| 31 | </script> |
|---|
| 32 | </body> |
|---|
| 33 | </html> |
|---|