Guest User

Untitled

a guest
Jun 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <html>
  2. <title>Some title</title>
  3. <style type="text/css">
  4. /* CSS content here */
  5. </style>
  6. <body>
  7. <!-- body content here -->
  8. </body>
  9. </html>
  10.  
  11. $("#iframe_constainer")
  12. .find('iframe:first').contents().find('html:first').html(myHTML);
  13.  
  14. <div id="iframe_container"><iframe/></div>
  15.  
  16. <html>
  17. <html>
  18. <title>Some title</title>
  19. <style type="text/css">
  20. /* CSS content here */
  21. </style>
  22. <body>
  23. <!-- body content here -->
  24. </body>
  25. </html>
  26. </html>
  27.  
  28. document.getElementById("myIframeId").contentWindow.document.write(myHTML);
  29.  
  30. var iframe = document.getElementById('iframeID');
  31. iframe.contentWindow.document.open();
  32. iframe.contentWindow.document.write(htmlData);
  33. iframe.contentWindow.document.close();
Add Comment
Please, Sign In to add comment