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 positioning of window in certain dimensions

2068


how to Auto Scroll the page

1991


code to detect availability of cookies

2127


create Drop-Down Navigation Menus

2106


program to bring a window to the front

1970


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

2105


program to show a progress bar

2557


how to create Expandable and Collapsible Menus

3181


Create a ViewState Property?

2647


how to pass data between pages using Frames

2643


write a code to generate pseudorandom numbes

2302


how to create a Custom Scrollbar

2482


communication between main window and new windows

2130


code to sorting an array of objects

2424


code to create a new window

2136