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
Predefined Links
When the link.min.js
plugin is used it is possible to define a predefined list of links. The user can select from this list when inserting or editing a link.
Try it yourself:
The list of predefined links can be defined using the linkList option.
HTML
<div id="froala-editor"> <p>The list of predefined links can be defined using the <a href="../docs/options#linkList" title="linkList option" target="_blank">linkList</a> option.</p> </div>
JAVASCRIPT
<script> $(function() { $('div#froala-editor').froalaEditor({ linkList: [ { text: 'Froala', href: 'https://froala.com', target: '_blank' }, { text: 'Google', href: 'https://google.com', target: '_blank' }, { text: 'Facebook', href: 'https://facebook.com' } ] }) }); </script>