It looks like you’re browsing an old version of Froala. Please go to the newer version of our docs for a more updated version.
Links
Init On Link
Using the link.min.js
plugin it is possible to initialize the WYSIWYG HTML editor only on a link.
Try it yourself:
The rich text editor will be initialized only on this following link: Froala WYSIWYG HTML editor website
HTML
<p>The rich text editor will be initialized only on this following link: <a id="froala-editor" href="https://froala.com/wysiwyg-editor">Froala WYSIWYG HTML editor website</a></p>
JAVASCRIPT
<script> $(function() { $('a#froala-editor').froalaEditor() .on('froalaEditor.contentChanged', function () { console.log ('content changed'); }) }); </script>