Allow Only Letters In Text Box

. 5/26/10
  • Agregar a Technorati
  • Agregar a Del.icio.us
  • Agregar a DiggIt!
  • Agregar a Yahoo!
  • Agregar a Google
  • Agregar a Meneame
  • Agregar a Furl
  • Agregar a Reddit
  • Agregar a Magnolia
  • Agregar a Blinklist
  • Agregar a Blogmarks

HTML


<input type="text" id="field"> <input type="button" value="Validate" onClick="textfield()">


JS


function textfield(){
            var firstname = /^[a-zA-Z]*$/;
            var fvalue = document.getElementById("field").value;
            alert(fvalue);
            if(!firstname.test(fvalue)){
                alert("Invalid");
            }
        }




Example

0 comments: