Search code examples
jquerytinymcetinymce-4

How to determine the text font size in tinymce


I want to when I click on the text, the font size of text in the editor toolbar to be determined. Such as Microsoft office word. How can I do it?


Solution

  • var editor = tinymce.activeEditor;
    var node = editor.selection.getNode();
    var fontSize = editor.dom.getStyle(node, 'font-size');