2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-19 07:54:28 -06:00

Fixed incorrect jQuery selector example, fixes #8

This commit is contained in:
Jeroen Akkerman 2018-05-09 10:28:22 +02:00 committed by GitHub
parent 2adb4dcfa1
commit fd1665d012
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ Or via jQuery.
```html
<textarea id="my-text-area"></textarea>
<script>
var easyMDE = new EasyMDE({element: $('#my-text-area')});
var easyMDE = new EasyMDE({element: $('#my-text-area')[0]});
</script>
```