Reputation: 1939
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?
Upvotes: 1
Views: 712
Reputation: 2449
Here is the simple solution to fetch the font size:
tinymce.activeEditor.queryCommandValue('FontSize');
Upvotes: 1
Reputation: 247
var editor = tinymce.activeEditor;
var node = editor.selection.getNode();
var fontSize = editor.dom.getStyle(node, 'font-size');
Upvotes: 1