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
Shortcuts
Change what shortcuts should be available in the WYSIWYG HTML editor.
HTML
<div id="eg-shortcuts" class="text-small"> <p>Change what shortcuts should be available in the WYSIWYG HTML editor.</p> </div>
JAVASCRIPT
<script> $(function() { $('div#eg-shortcuts').editable({ inlineMode: false, // Enable shortcuts. shortcuts: true, // Set the list of available shortcuts. shortcutsAvailable: ['bold', 'italic'] }) }); </script>