javascript: (function() { var wordCount = function() { if (!window.jQuery) { return setTimeout(wordCount, 100); } var $ = jQuery; $('.wc').remove(); $('textarea').each(function(idx,elem) { var wc = $(elem).text().split(/[ \n]+/).length; $(elem).after('<div class="wc"'+( (wc>120) ? ' style="color: red"':'')+'>'+wc+'</div>'); }); }; if (!window.jQuery) { var c=document.createElement("script"); c.type="text/javascript"; c.src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"; document.documentElement.childNodes[0].appendChild(c); } wordCount(); })();https://gist.github.com/kstinchcombe/5087397/raw/6c6d6d852970a5b629a83f9ac6d55d701e0a3926/gistfile1.js
doesn't update live, that would be super annoying. click again to update.