Skip to content

Instantly share code, notes, and snippets.

@amnuts
Last active September 30, 2016 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amnuts/b1cab862e7c126737f38 to your computer and use it in GitHub Desktop.
Save amnuts/b1cab862e7c126737f38 to your computer and use it in GitHub Desktop.
word/char count w/ jquery
$(function(){
var txt = $('.content')[0].text(),
charCount = txt.length,
wordCount = txt.replace(/[^\w ]/g, "").split(/\s+/).length;
$('#somwhereInYourDocument').text("The text had " + charCount + " characters and " + wordCount +" words");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment