Quick Word Count Listing on Drupal Post

If you're writing something in drupal and you need to know the word count here's a quick snippet of jQuery code that you can run that puts a little word count indicator before the textarea where you're writing the post. And yes, I'm attempting to procrastinate while writing a 1000 word philosophy essay.

jQuery("#edit-body").keyup(function() { 
    var t; 
    if (jQuery("#edit-body-count").length == 0) {
        t = jQuery('<p id="edit-body-count"></p>'); 
        jQuery(this).before(t);
    } else {
        t = jQuery("#edit-body-count");
    }
    t.html(jQuery.trim(jQuery(this).val()).split(/\s+/).length + " word(s)"); 
});

Update: A few people have contacted me wanting to know where this code would go. Well, it wouldn't really go anywhere as it is, because it's a bit of code you'd execute yourself after the page has loaded. However, if you wrap it all in a jQuery(function() { /*code here*/ }); then it could be placed anywhere on your site. Whether that's you creating a custom drupal plugin that does nothing other than call "drupal_add_js" and add this script to the page, or you modify your site's template theme so that it's hardwired directly into your site, or some other more clever option of which I'm unaware. Either way, the code's position is irrelevant if you wrap it in a jQuery onready event as I've shown above, only that it is on the page.

Comments

When use this Microsoft

When use this Microsoft Office 2007 Download you can create a digital Microsoft Office 2010 notebook in Microsoft Office 2011 to organize your ideas Office 2007 Key information for any Download Office 2007 project, from a home remodel Microsoft Office 2007 Professional to a major purchase decision.
Download Office 2010 and share all the materials and Office 2010 Key media for a Microsoft Office 2010 Download project in an Office 2010 Download: Windows 7, Microsoft Windows 7, Win 7, Download Windows 7, Buy Windows 7, and more. At the same time Office 2007 may find the information Microsoft Office 2007 you need with simple Office 2007 Download tagging and search functions and Office 2007 Professional take notes as you work. In MS Office 2007 addition the notes link automatically buy microsoft office 2007 to the page purchase microsoft office 2007 working on in the other Office 2010 application so that MS Office 2010 you can easily Office 2010 Professional search and find buy microsoft office 2010 them.

When use this Microsoft

When use this Microsoft Office 2007 Download you can create a digital Microsoft Office 2010 notebook in Microsoft Office 2011 to organize your ideas Office 2007 Key information for any Download Office 2007 project, from a home remodel Microsoft Office 2007 Professional to a major purchase decision.
Download Office 2010 and share all the materials and Office 2010 Key media for a Microsoft Office 2010 Download project in an Office 2010 Download: Windows 7, Microsoft Windows 7, Win 7, Download Windows 7, Buy Windows 7, and more. At the same time Office 2007 may find the information Microsoft Office 2007 you need with simple Office 2007 Download tagging and search functions and Office 2007 Professional take notes as you work. In MS Office 2007 addition the notes link automatically buy microsoft office 2007 to the page purchase microsoft office 2007 working on in the other Office 2010 application so that MS Office 2010 you can easily Office 2010 Professional search and find buy microsoft office 2010 them.

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.

More information about formatting options

Captcha
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
4 + 0 =
Solve this simple math problem and enter the result. E.g. for 1+3, enter 4.