Ali Hesari
Ali Hesari

Reputation: 1939

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?

Upvotes: 1

Views: 712

Answers (2)

Parth Jasani
Parth Jasani

Reputation: 2449

Here is the simple solution to fetch the font size:

tinymce.activeEditor.queryCommandValue('FontSize');

Upvotes: 1

m.kerkeni
m.kerkeni

Reputation: 247

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

Upvotes: 1

Related Questions