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.
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>