Instant Numeric Validation

K

Kesavan Muthuvel

I need a code to check instantly the value in textbox.
The code is to not allow users even to enter alpha characters in the
textbox.

Thank you

Kesavan Muthuvel
Chennai INDIA
 
M

Man-wai Chang

Kesavan said:
I need a code to check instantly the value in textbox.
The code is to not allow users even to enter alpha characters in the
textbox.

use Regexp

Look at the thread a few lines away with subject="Regular expression for
required alpha and numeric characters"
 
S

scripts.contact

I need a code to check instantly the value in textbox.
The code is to not allow users even to enter alpha characters in the
textbox.

<textarea
rows=20 cols=60
onkeypress="if(/\w/.test(String.fromCharCode(event.keyCode)))return
false"</textarea>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,430
Messages
2,571,676
Members
48,796
Latest member
Greg L.

Latest Threads

Top