Current location: Hot Scripts Forums » General Web Coding » JavaScript » what do i add to this to include comma and decimal point?


what do i add to this to include comma and decimal point?

Reply
  #1 (permalink)  
Old 08-30-10, 11:23 PM
esandra esandra is offline
Newbie Coder
 
Join Date: Aug 2009
Posts: 47
Thanks: 1
Thanked 0 Times in 0 Posts
what do i add to this to include comma and decimal point?

how do i change this condition for it to let me type in a decimal point and a comma?
comma and decimal point is 110 and 188 i believe

function isMoneyKey(evt)
{
var charCode = (evt.which) ? evt.which : event.keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57))
return false;
return true;
}
</SCRIPT>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #2 (permalink)  
Old 08-31-10, 05:13 AM
UnrealEd's Avatar
UnrealEd UnrealEd is offline
Community Liaison
 
Join Date: May 2005
Location: Antwerp, Belgium
Posts: 3,165
Thanks: 4
Thanked 25 Times in 25 Posts
Topic moved to the Javascript forum

As for your question:
HTML Code:
<script type="text/javascript">
function isMoneyKey(evt)
{
var charCode = (evt.which) ? evt.which : event.keyCode
if ((charCode > 47 && charCode < 58) || (charCode > 95 && charCode < 106) || charCode == 110 || charCode == 188)
return true;
return false;
}
</script>
Range 47-58: 0-9
Range 95-106: numpad 0-9
110: decimal point
188: comma
__________________
"Good judgement comes from experience, and experience comes from bad judgement." - Fred Brooks

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump


All times are GMT -5. The time now is 01:40 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.