Jump to content

Form Validation


NaniG

Recommended Posts

Hi to all,

 

        If user has entered text in the text field with spaces (eg. user name), i have to show the error message and alert it, the text filed name should not contain the spaces. I used the basic javascript validation to validate the text filed... like

 

function validation()

{

    var txtfield1 = document.formx.txtfield1.value;

   

    if(txtfield1=="")

  {

      alert("Please enter txtfield1");

      document.formx.txtfield1.focus();

      return false;

  }

}

Need to alert the message when user entered with spaces.....

 

Please help me out...

 

Thanks in advance....

Link to comment
Share on other sites

Use the JavaScript match method. Try

 

if(txtfield1.match(/ /g)) //g stands for global, means it will keep looking through entire string rather than stop at the first character if it returns false
   {
       alert('You entered a space.');
   }
else{
       //continue with function
   }

 

P.s. Please use code tags to display code. It's the button with a '#' on it.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.