Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Real time Editor</title>
  4. <script>
  5. function refresh(){
  6. var textContent = document.getElementById('editor-textarea').value; document.getElementById('viewer').srcdoc = textContent;
  7. }
  8. </script>
  9. <style>
  10. *{
  11. padding: 0;
  12. margin: o;
  13. }
  14. .main{
  15. background:#ecf0f1;
  16. width: 100%;
  17. height: 100%;
  18. display: inline-flex;
  19. }
  20. #editor-textarea{
  21. width: 100%;
  22. height: 95%;
  23. margin: 10px;
  24. padding: 5px;
  25. }
  26. #viewer{
  27. background: white;
  28. border: none;
  29. width: 100%;
  30. height: 95%;
  31. margin: 10px;
  32. border: 1px solid #3498db;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <div class="main">
  38. <textarea id="editor-textarea" onkeyup = "refresh()" placeholder="Start coding here..."></textarea>
  39. <iframe id="viewer"></iframe>
  40. </div>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement