/    Sign up×
Community /Pin to ProfileBookmark

Validating number entries

On my Web page called [b]index.cfm[/b] I cant seem to get my Number validation working. Is there anything wrong with the below attempt??

[code]
<script>
function reqNum()
{
if (isNaN(document.updateproj.cust_id.value))
{
alert(“Enter number for cust id onlyn”);
return false;
}
else if(isNaN(document.updateproj.proj_id.value))
{
alert(“Enter number for proj id onlyn”);
return false;
}

}
</script>

<cfform action=”projecthere.cfm” method=”POST” enablecab=”No” name=”updateproj” onSubmit=”return reqNum();”>
<cfinput type=”text” name=”cust_id” value=”” />
<cfinput type=”text” name=”proj_id” value=”” />

[/code]

to post a comment
JavaScript

3 Comments(s)

Copy linkTweet thisAlerts:
@KorApr 02.2004 — [code=php]
<script>
function reqNum()
{
if (isNaN(document.updateproj.cust_id.value))
{
alert("Enter number for cust id onlyn");
return false;
}
if(isNaN(document.updateproj.proj_id.value))
{
alert("Enter number for proj id onlyn");
return false;
}
return true
}
</script>
[/code]


eerrr are u sure that is a number validator?
Copy linkTweet thisAlerts:
@floridaauthorApr 02.2004 — Thanks
Copy linkTweet thisAlerts:
@steelersfan88Apr 02.2004 — normally, validate numbers as:[code=php]var number = "156"
if(/^d$/.test(number)) {
//number
}
else {
// not number
}[/code]
×

Success!

Help @florida 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.18,
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,
)...