Skip to content

Instantly share code, notes, and snippets.

@tamewhale
Created September 15, 2010 20:07
Show Gist options
  • Save tamewhale/581361 to your computer and use it in GitHub Desktop.
Save tamewhale/581361 to your computer and use it in GitHub Desktop.
A word count and limit for tinyMCE
// this assumes an existing html tag containing the upper limit
// of the word count, with an id of #word-count- + the id of the tinymce instance
// e.g. <p>Words left: <span id="word-count-textarea-1">200</span></p>
// add as a parameter to the tinyMCE.init({}); function
setup: function(ed) {
var text = '';
var span = document.getElementById('word-count-' + ed.id);
if(span) {
var wordlimit = span.innerHTML;
ed.onKeyDown.add(function(ed, e) {
text = ed.getContent().replace(/(< ([^>]+)<)/g, '').replace(/\s+/g, ' ');
text = text.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
wordcount = wordlimit - (text.split(' ').length);
span.innerHTML = wordcount;
if(wordcount <= 0 && e.keyCode != 8) {
return tinymce.dom.Event.cancel(e);
}
});
}
}
@theodorocaliari
Copy link

@caBBAlainB check out the tinymce documentation http://www.tinymce.com/wiki.php/Configuration

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment