Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

validation code / function to allow only NUmbers in a text box

Answer Posted / shwetha kamath

function validate_user_editadvanced_form_username(element)
{var valid = "0123456789"
var ok = "yes";
var temp;
for (var i=0; i<element.value.length; i++) {
temp = "" + element.value.substring(i, i+1);
if (valid.indexOf(temp) == "-1") ok = "no";
}
if (ok == "no") {
alert("Invalid entry! Only numbers are accepted!");
element.focus();
element.select();
}
}

Is This Answer Correct ?    9 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Code to Block submission of form by pressing Enter Key

2552


code to images to rollover

2429


snippet to prevent submission of form when certain/any validations got failed

1974


code to detect availability of cookies

2236


how to pass data between pages using Frames

2772


how to pass data between pages using Cookies

2507


code to detect versions of different browsers like internet explorer, netscape, mozilla, opera etc

2221


How to encode and decode URL strings?

2347


maximizing the main window

2115


communication between main window and new windows

2222


Create a Menu that can be activated while clicking on Right Mouse button

2194


function to combine two or more arrays

2188


how to get the User's Time of Day

2174


create Drop-Down Navigation Menus

2239


sample code to auto focusing the first field in a form

2540