I want to allow only English,numeric and special characters to be typed in my web page. i want to apply this thing using jquery or javascript. Actually my application is in 2 languages so for that i want to do this. I want to do the same thing with Arabic language too.. please help me. How can I do that?
|
if ch is that char,you can do this
You can do the same comparison with arabic character which is represented in unicode
|
|||||||||||
|
|
|
You can try the following code that uses JavaScript replace method. The replace method accepts a regex pattern and so you can define pretty much anything you want/don't want typed in the textbox:
Here's the jsFiddle to try this out: http://jsfiddle.net/leniel/rtE54/ After a bit more thinking I implemented this code:
You can read more about it here: JavaScript regex + jQuery to allow only English chars/letters in input textbox |
|||||||
|
|
Try something like that. The regex for English characters is /^[A-Za-z0-9]*$/
|
|||||
|
|
|
You can limit the keys base on the
and you can use it as
and on Fiddle: http://jsfiddle.net/UHGRz/3/ You can applied to all input controls with jQuery. Did not work with copy/paste, there you need the Lenier solution with the Replace. And a convert to jQuery code
and on Fiddle : http://jsfiddle.net/UHGRz/5/ |
|||||||||||
|
$one of them? i know "english" uses it. – RASG Oct 11 '12 at 16:43$('input').change(function() { $(this).val('English characters'); }– mayhewr Oct 11 '12 at 16:58