Guest User

Untitled

a guest
Feb 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $editor.on('input propertychange', function () {
  2. var outputHtml = marked($('#editor').val());
  3. $output.html(outputHtml);
  4. console.log($('#editor').val());
  5. });
  6.  
  7. .editor {
  8. resize: none;
  9. width: 100%;
  10. height: 100%;
  11. overflow-y: auto;
  12. overflow-x: hidden;
  13. }
  14. .output {
  15. padding: 5px;
  16. padding-top: 15px;
  17. overflow-y: auto;
  18. overflow-x: hidden;
  19. }
Add Comment
Please, Sign In to add comment