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:
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- [WinError 145] The directory is not empty: 'FolderPath' - Python
Related Article