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

how to transform XML Data into HTML

2316


how to create an anonymous function

2089


communication between main window and new windows

2137


maximizing the main window

2023


Code to Block submission of form by pressing Enter Key

2461


Create a ViewState Property?

2653


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

1883


code to images to rollover

2320


determine which Element received an Event

2291


how to create a Custom Scrollbar

2493


how to create a Draggable element

2365


how to pass data between pages using Cookies

2376


create Drop-Down Navigation Menus

2113


How to encode and decode URL strings?

2246


how to get the User's Time of Day

2059