- /*jquery Limit text box to enter only numbers and decimal places */
- <script>
- $ (function () {
- /*jquery Limit text box to enter only numbers * /
- $ ("#id"). KeyUp (function () {
- $ (This). Val ($ (this). Val (). replace (/\d|^0/g,"));
- }). bind ("paste",function () { //ctr+v event handling
- $ (This). Val ($ (this). Val (). replace (/\d|^0/g,"));
- }). css ("Ime-mode", "disabled"); //css setting IME is not available
- /*jquery Limit text box to enter only numbers and decimal places */
- $ ("#id"). KeyUp (function () {
- $ (This). Val ($ (this). Val (). replace (/[^0-9.) /g,"));
- }). bind ("paste",function () { //ctr+v event handling
- $ (This). Val ($ (this). Val (). replace (/[^0-9.) /g,"));
- }). css ("Ime-mode", "disabled"); //css setting IME is not available
- });
- </script>
jquery Limit text box can only enter numbers, jquery limit text box can only enter numbers and decimal points