Guest User

Untitled

a guest
May 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Iframe cross-document messaging example (Iframe)</title>
  6. </head>
  7. <body>
  8. <div>
  9. <p>Frame</p>
  10. <p id="messageBox">message</p>
  11. </div>
  12. </body>
  13. <script type="application/javascript">
  14. (() => {
  15.  
  16. let messageBox = document.getElementById("messageBox");
  17.  
  18. window.onmessage = (e) => {
  19.  
  20. if (e.data != null) {
  21. console.log(e.data);
  22. messageBox.innerHTML = e.data;
  23. }
  24. };
  25.  
  26. })();
  27. </script>
  28.  
  29. </html>
Add Comment
Please, Sign In to add comment