Skip to content

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.

predefined-link-list

Try it yourself:


Edit in JSFiddle

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>
File: 3731