FREE tutorial,solution,RSS Feeds on Operating Systems, Programming, Web Development, Applications, Databases, Networking, Hardware, Security, SEO Free Expertsforge Membership
Join us as Moderator
Submit Article to Expertsforge.com Submit Article My Expertsforge
 
RSS Feeds, Help Help RSS Feeds
bannertop
 

JavaScript Tutorial: Javascript Word Count Tool

jawahar
1/4/2008 4:37:50 AM, Views: 1342
Creating a Javascript Word Count Tool is very easy. The following code can be pasted as a new HTML file and executed directly in a web browser. After executing the html file in the browser, the just paste the contents in the text box and click the "Count the Words" button which starts the Javascript word count tool execution, and the result is displayed.

<html>
<head>
<title>Javascript Word Count Tool</title>
<script language="JavaScript" type="text/javascript">
function wordCount()
{
   frmwordcount.txtwordcountresult.value=frmwordcount.txtwordcount.value.split(" ").length;
}
</script>
</head>
<body>
<form method="POST" name="frmwordcount">
   <textarea name="txtwordcount" cols="60" rows="10" id="txtwordcount"></textarea><br/>
   <input name="btncount" type="button" id="btncount" onClick="wordCount()" value="Count the Words">
   <input name="txtwordcountresult" type="text" id="txtwordcountresult" size="10">
</form>
</body>
</html>
Next Steps:
Add this Tutorial to:
Blink Blink del.icio.ous Del.icio.us Digg Digg
Fark Fark Furl Furl Google Google
Reddit Reddit Simpy Simpy Spurl Spurl
Technorati Technorati Windows Live Win Live Yahoo Yahoo
Rate Me!
Avg Visitor Rating: Average Visitor Rating is 4 out of 5
Number of Ratings : 2 Votes
Rate:
Send Private MessageSend Message
Signup / Login To View the Solution or Provide Comments
Post Comment/Solution
Comment:*
        (Link Rules) 
  Use : [bold] for <b>; [/bold] for </b>; [italic] for <i>; [/italic] for </i>; [code] & [/code] for code
 
Categories
Options
JavaScript RSS Feed
Most Popular Tutorial
Most Popular Solution
Top Rated
Top Rankers
Overall
1. jawahar (1400)
Yearly -2008
1. jawahar (200)
Expertsforge Sponsors
bnrtop