--- layout: doc title: Events - Simditor id: doc-event root: ../ --- Simditor will trigger different events, you can bind these events if needed: ```coffee # init Simditor editor = new Simditor textarea: $('#editor') # bind valuechanged event editor.on 'valuechanged', (e, src) -> alert('simditor valuechanged') ``` ###Events
{% for item in site.data.events %}
{{ item.name }} {% for param in item.params %} {{ param.name }} {{ param.type }} {% endfor %}
{{ item.description | markdownify }}
{% endfor %}