Skip to content

Examples

Tabs

Froala WYSIWYG HTML Editor does not interfere with the natural TAB key behavior allowing you to easily navigate through pages. You can also change this behaviour and use the TAB key to indent 4 spaces at a time.

HTML

<div id="eg-tabs" class="text-small">
          <p>Froala WYSIWYG HTML Editor does not interfere with the natural TAB key behavior allowing you to easily navigate through pages. You can also change this behaviour and use the TAB key to indent 4 spaces at a time.</p>
        </div>

JAVASCRIPT

<script>
  $(function() {
    $('div#eg-tabs').editable({
      inlineMode: false,
      tabSpaces: true
    })
  });
</script>
File: 7109