Provide Bold/Italic/Strikethrough/Underline/Subscript/Superscript buttons and commands.
const editor = Jodit.make('#editor');editor.execCommand('bold'); // or press Ctrl+Beditor.execCommand('italic'); // or press Ctrl+Ieditor.execCommand('underline'); // or press Ctrl+Ueditor.execCommand('strikethrough');editor.execCommand('subscript');editor.execCommand('superscript'); Copy
const editor = Jodit.make('#editor');editor.execCommand('bold'); // or press Ctrl+Beditor.execCommand('italic'); // or press Ctrl+Ieditor.execCommand('underline'); // or press Ctrl+Ueditor.execCommand('strikethrough');editor.execCommand('subscript');editor.execCommand('superscript');
If you like Jodit - try Jodit PRO
Bold and styles button
Provide Bold/Italic/Strikethrough/Underline/Subscript/Superscript buttons and commands.