c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
JavaScript

How to calculate characters and words typed in textbox using JavaScript ?

| | JavaScript

In this article, I will show you to calculate how many words have I typed in a textbox using javaScript. With the help of below code, when the user enters some text in a textbox it calculate word count on a JavaScript keyup event.

Example:

<script type="text/javascript">
        function countwords() {
            var val = document.getElementById("txtinput").value;
            var words = 0, chars = 0;
            if (val != "") {
                words = val.replace(/\s+/gi, ' ').split(' ').length; // Count words 
                chars = val.length;                                 // Count characters 
            }
            document.getElementById("divAlert").innerHTML = words;
        }
    </script>
<h2>counting words in a essay</h2>
            <br />
            <input type="text" id="txtinput" onkeyup="countwords()" style="width: 250px; height: 30px;" /><br />
            <div id="divAlert" style="text-align: left; margin-bottom: 10px; color: red">
            </div>

 





Output:

count words in a paragraph using javascript