Code Bank
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsProgrammingCode Bank

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old April 26th, 2006, 04:17 AM
Shadow Wizard's Avatar
Shadow Wizard Shadow Wizard is offline
Moderator From Beyond
Click here for more information.
 
Join Date: Sep 2004
Location: Israel
Posts: 26,993 Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 8th Grade (Above 100000 Reputation Level)  Folding Points: 342508 Folding Title: Super Ultimate Folder - Level 1Folding Points: 342508 Folding Title: Super Ultimate Folder - Level 1Folding Points: 342508 Folding Title: Super Ultimate Folder - Level 1Folding Points: 342508 Folding Title: Super Ultimate Folder - Level 1Folding Points: 342508 Folding Title: Super Ultimate Folder - Level 1Folding Points: 342508 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Months 1 Week 5 Days 16 h 39 m 38 sec
Reputation Power: 1557
Post Javascript: deciding what characters can be written into textbox

The script below define list of valid characters that can be written
into the text box. any other character won't be written into the
text box when pressed. code has been tested for IE6 and FireFox.

javascipt section:
javascript Code:
Original - javascript Code
  1. <script type="text/javascript">
  2. var arrValidChars=new Array("a", "b", "c", "d", "e", "f", "g", "h", "i");
  3. var arrSpecialChars = new Array(8, 9, 35, 36, 37, 38, 39, 40, 46);
  4. function VerifyCharacters(event, objInput) {
  5.     var strText = objInput.value;
  6.     var keyCode = event.keyCode||event.charCode;
  7.     if (InArray(arrSpecialChars, keyCode) >= 0)
  8.         return true;
  9.     var strChar = String.fromCharCode(keyCode);
  10.     return (InArray(arrValidChars, strChar)>=0);
  11. }
  12.  
  13. function InArray(arr, key) {
  14.     for (var i=0; i<arr.length; i++) {
  15.         if (arr[i] == key)
  16.             return i;
  17.     }
  18.     return -1;
  19. }
  20. </script>


html example:
html4strict Code:
Original - html4strict Code
  1. <input type="text" onkeypress="return VerifyCharacters(event, this);" />


just change the variable arrValidChars to hold the valid letters
of your choice.

Reply With Quote
Reply

Viewing: ASP Free ForumsProgrammingCode Bank > Javascript: deciding what characters can be written into textbox


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway