Guest User

Untitled

a guest
Mar 13th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <iframe id='myFrame' />
  2.  
  3. var src = 'data:text/html;charset=utf-8,' + encodeURIComponent(
  4. "<!doctype html><html><head></head><body><h1>Title</h1></body></html>");
  5.  
  6. $('#myFrame').attr('src', src);
  7.  
  8. $('#myFrame').contents().find('html').html('new template');
  9.  
  10. var source = "<!doctype html><html><head></head><body><h1>Title</h1></body></html>";
  11.  
  12. $('#myFrame').contents().find('html').html(source);
  13. $('#myFrame').contents().find('html').html('<body>Hi2</body>');
Add Comment
Please, Sign In to add comment