|
|
|
Optimizing for Visitors not Search Engines
Most people feel that optimizing is to target the search engines alone. In my opinion, this is not the only case. Optimization requires a balance of traffic enhancements and a user friendly atmosphere that provides clear navigation. Most will...
The Site Map – Important or Not?
Have you ever visited a web site and noticed the "Site Map" button jammed somewhere near the bottom of the page? Ever click on it? Probably not. So, why do sites have site maps?
The Site Map – Very Important
In the old days of the net [about...
Total PDF Converter features a wide range of conversion options. Along with Word Doc, Excel, HTML, Text and CSV files, it offers a number of graphic formats supported by Sony PSP and appliances for visual presentation
Newborn to Coolutils Family Shows the Signs of Prodigy
August 30, 2005 - Softplicity has enlarged its family of Windows utilities, known under the Coolutils brand, with a new member, Total PDF Converter. The newcomer's line of duty can be...
Um pouco de SIW
Muitas pessoas já me perguntaram o que é SIW. SIW é a sigla de Sistemas com Interface Web. O SIW é o desenvolvimento de Sistemas normais utilizando a Interface Web, que tem diversas vantagens perante a interface gráfica normal, como: -...
Website Optimization Tool for Beginners has No Knowledge of HTML
Offpage optimization and onpage optimization is the two types to improve your search engine ranking position.
Offpage website optimization need you get more links. The links that with top pagerank and related to your website is better. For more...
|
|
| |
|
|
|
|
Validating Numerical Input with JavaScript
What? Make a mistake entering data? Who me? NO WAY! Right.
Every form of data input by a user should be validated in some form or fashion. If you get
clean data in, you won't get garbage out. This tutorial is going to explain how to validate
numerical data entered into a form using JavaScript.
First, let us begin with the code to insert the JavaScript into your HTML document.
Place these lines between the and tags.
This line tells the web browser to expect some JavaScript code and signal the beginning of
the script:
So now the format should look something like this:
My Title
Now on to validating the numerical input.
First we will create a function with one arument:
function validate(mydata){
These lines will test for a blank enty then prompt the user for input:
if (mydata == ""){ alert("Please enter a number.") }
Next we will create a for loop which will look at each character in the data until it
reaches the end:
for(var i=0;i < mydata.length;i++){
Now create a variable and assign the counter variable value to it:
var mydigit = mydata.charAt(i)
To screen out symbols, punctuation, and letters, place an if statement in the loop:
if(mydigit < "0" || mydigit > "9"){
The || in the if statement scans for both conditions.
The next line will alert the user to any mistakes he/she has made:
alert(mydigit + " is not a number.")
Here is the complete code including HTML: ============================================= Numerical Validation
| | | | | | |