sparksuite / simplemde-markdown-editor

A simple, beautiful, and embeddable JavaScript Markdown editor. Delightful editing for beginners and experts alike. Features built-in autosaving and spell checking.
https://simplemde.com
MIT License
9.79k stars 1.12k forks source link

Cannot run simple demo #811

Closed sigmasoldi3r closed 3 years ago

sigmasoldi3r commented 3 years ago

Attempting to load a simple HTML document:

  <div id="MyID"></div>
  <script src="https://cdn.jsdelivr.net/simplemde/latest/simplemde.min.js"></script>
  <script>
    const simplemde = new SimpleMDE({ element: document.getElementById("MyID") });
  </script>

No other Javascript frameworks are present, and using the latest Firefox version.

But console displays an Uncaught TypeError: can't access property "first", t is undefined.

pixlmint commented 3 years ago

@sigmasoldi3r You need to use textareas. So replace your div with textarea.

sigmasoldi3r commented 3 years ago

It solves the issue! Thanks! 😃