Days
Hours
Minutes
Seconds
x

New Froala Editor v5.0.0 is here โ€“ Learn More

Skip to content
Froala Documentation

Links

Link Styles

While using the link.min.js plugin it is possible to add custom style on the selected link inside the WYSIWYG HTML editor.

Try it yourself:


You can define your own link styles using the linkStyles option. This option is an Object where the key represents the class name and its value is the style name that appears in the dropdown list. It is important to have unique keys otherwise they will not work properly.

By default you can select multiple link styles at a time. If you want to toggle them and allow only one style to be selected at a time use the linkMultipleStyles option.

Edit in JSFiddle

HTML

<div id="froala-editor">
  <p>The classes should be defined in <a href="http://www.w3schools.com/css/" title="CSS" target="_blank" rel="nofollow">CSS</a>, otherwise no changes will be visible on the link's appearance.</p>
</div>

CSS

<style>
  .class1 {
    text-decoration: underline;
  }

  .class2 {
    color: blue;
  }
</style>

JAVASCRIPT

<script>
  $(function() {
    new FroalaEditor('div#froala-editor', {
      // Define new link styles.
      linkStyles: {
        class1: 'Class 1',
        class2: 'Class 2'
      },
    })
  });
</script>
Sign up

Download the code by signing up for our newsletter

Sign up

Download the code by signing up for our newsletter

Note: By registering, you confirm that you agree to the processing of your personal data by Froala, Inc. - Froala as described in the Privacy Statement. Froala, Inc. - Froala is part of the Idera group and may share your information with its parent company Idera, Inc., and its affiliates. For further details on how your data is used, stored, and shared, please review our Privacy Statement.