I'm trying to write a Wordpress plugin. I will get counts words which in WP's Tinymce editor. Basically, it's a word counter which counting long of your post and giving you this message in a meta box
Your post has 450 words
My just problem is getting words from Tinymce via javascript. This isn't working :
document.getElementById('content')
Tinymce's content's id is content . But this code returning NULL. I couldn't find valid id name for Tinymce.
In shortly, other all codes are ready, just i can't get words from Wordpress' WYSIWYG editor.
Thanks.
Try:
tinymce.activeEditor.getContent();
or
tinymce.editors.content.getContent();
Where "content" is the id of your textarea.
Similarly, if you wanted to get just the selected (highlighted) text in the TinyMCE text area you would do:
tinymce.activeEditor.selection.getContent();
The full API is here: http://tinymce.moxiecode.com/wiki.php/API3:class.tinymce.Editor
TinyMCE also offers a lot of events you can bind to, particularly in your case the keyup, keydown, and keypressed events.
Be sure to call this stuff only after TinyMCE has loaded on the page.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With