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
https://forums.phpfreaks.com/topic/253006-form-validation/
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
https://forums.phpfreaks.com/topic/253006-form-validation/#findComment-1297133
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.