Skip to content
.github-star { padding-left: 15px; margin-bottom: 15px; }

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:


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>
  new FroalaEditor('div#froala-editor', {
    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: 1570