/    Sign up×
Community /Pin to ProfileBookmark

Form Validation Count charcters

Hi,

I was wondering if some one could help me, or point me in the right direction.

I’m looking for a script that will count the number of characters entered. In this case when the characters count hits 9 a separate javascript function is executed.

Could any one help?

Thanks

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@vwphillipsJul 12.2008 — [CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<title></title>
<script language="JavaScript" type="text/javascript">
/*<![CDATA[*/

function Count(ip,cnt,fun){
if (ip.value.length==cnt) window[fun](ip);
}

function MyFunction(ip){
alert(ip.value);
}
/*]]>*/
</script></head>

<body>
<input name="" onkeyup="Count(this,9,'MyFunction');"/>
</body>

</html>[/CODE]
Copy linkTweet thisAlerts:
@webfortauthorJul 12.2008 — thanks, that works great
×

Success!

Help @webfort spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.22,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...