Advertisement
nzisaacnz

Real Time HTML Editor

Jun 25th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.26 KB | None | 0 0
  1. <textarea id="code" oninput="reloadHTML()"></textarea>
  2. <iframe id="view"></iframe>
  3.  
  4.  
  5. <script>
  6. function reloadHTML() {
  7. console.log('hello')
  8.   view.contentDocument.open();
  9.   view.contentDocument.write(code.value);
  10.   view.contentDocument.close();
  11. }
  12. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement