Jump to content

Vaildate


rashmi_k28

Recommended Posts

How to validate if radio button option ==4 and date2.disabled==false ,,,,

alert message Duration option not available

 

 

function checkForm(TheForm) {
        //if((document.example.opt2.value==4) && (document.example.date2.value != "yyyy-mm-dd")){
        //      var msg="select only Start date, duration option not available";
        //      alert(msg);
        //      return false;
        //      }
        if (document.example.date2.disabled == true) {
                if (document.example.date1.value == "yyyy-mm-dd") {
                        var msg = "date not chosen from calendar icon";
                        alert(msg);
                        return false;
                }
        }
        else{
                if (document.example.date1.value == "yyyy-mm-dd" || document.example.date2.value == "yyyy-mm-dd") {
                        var msg = "start or end date not chosen from calendar icon";
                        alert(msg);
                return false;
                }
                if(document.example.date1.value > document.example.date2.value){
                        var msg = "choose proper date-Start date is greater than end date";
                        alert(msg);
                        return false;
                }
                 if(document.example.date1.value == document.example.date2.value){
                        var msg = "choose proper date-Start and end date is equal";
                        alert(msg);
                        return false;
                }

        }
}


<FORM NAME="example" class="frm" onSubmit="return checkForm(this); submit=”a.php”>

  <input type="radio" name="opt2" value="2" checked>
  Option 1<br><br>
  <input type="radio" name="opt2" value="3">
  Option 2<br><br>
  <input type="radio" name="opt2" value="4">
  Option 3<br><br>







Link to comment
Share on other sites

for (var i=0; i < document.example.opt2.length; i++)
   {
   if (document.example.opt2[i].checked && document.example.opt2[i].value==4 && document.example.date2.value != "yyyy-mm-dd"))
   
      {
       var msg="select only Start date, duration option not available";
              alert(msg);
              return false;

      }
   }  

 

 

Link to comment
Share on other sites

  • 2 weeks later...
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.