<html>
<head>
<script language="javascript">
function blockChar()
{
var str = document.getElementById('txt').value;
str = str.replace(/[^\d]*/g,'');
document.getElementById('txt').value = str;
}
</script>
</head>
<body onload="javascript:document.getElementById('txt').focus();">
<input type="text" id='txt' onkeyup="blockChar();" />
</body>
</html>
Program Demo
Note:IE Supported
Subscribe to:
Post Comments (Atom)
- SSRS 2005 - How To Format Globals!ExecutionTime To "MM/dd/yyyy"
- Command Prompt How to list all files in a folder as well as sub-folders in windows
- ArrayList, List, HashTable, Dictionary, SortedList, SortedDictionary — Speed, memory, and when to use each?
- Access modifiers
- Entity framework in WCF Service - Network access for Distributed Transaction Manager (MSDTC) has been disabled. Please enable DTC for network access in the security configuration for MSDTC using the Component Services Administrative tool.
2 comments:
I want allow "12.39" i.e i want to allow decimal point how do i do that?
hi Pushkar Firodiya ,
if u want to decimal point meanse replace the current Reg Exp with the folloing one
str.replace(/[^\d.]*/g,'');
Post a Comment