Jump to content

radio button


rashmi_k28

Recommended Posts

Okay question is rather brief. I don't really know exactly what you want but I took a stab:

 

<script type="text/javascript">
function radioClick(v,link){
if(v.value == 4){
	window.open(link,"new_page");
}else{
	window.location=link;
}
}
</script>

<form>
1: <input type="radio" name="radio_group" id="radio1" value="1" onclick="javascript:radioClick(this,'http://www.linkhere.com')" /><br />
2: <input type="radio" name="radio_group" id="radio2" value="2" onclick="javascript:radioClick(this,'http://www.linkhere.com')" /><br />
3: <input type="radio" name="radio_group" id="radio3" value="3" onclick="javascript:radioClick(this,'http://www.linkhere.com')" /><br />
4: <input type="radio" name="radio_group" id="radio4" value="4" onclick="javascript:radioClick(this,'http://www.linkhere.com')" />
</form>

Link to comment
https://forums.phpfreaks.com/topic/118051-radio-button/#findComment-607394
Share on other sites

I think he means more like this:

<form id="frm1">
<input type="radio" name="rad1" value="1">Radio 1
<input type="radio" name="rad1" value="2">Radio 2
<input type="radio" name="rad1" value="3">Radio 3
<input type="radio" name="rad1" value="4">Radio 4
<br>
<input type="submit" onclick="if (rad1[3].checked) frm1.target='_blank'">
</form>

Link to comment
https://forums.phpfreaks.com/topic/118051-radio-button/#findComment-607692
Share on other sites

function checkForm(TheForm) {

        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;
                }
   if (document.example.opt2[3].checked && document.example.date2.value != "yyyy-mm-dd")

      {
       var msg="select only Start date- duration option not available";
              alert(msg);
              return false;

      }

        }
}


 

<FORM NAME="example" class="frm" onreset="disableField()" onSubmit="return checkForm(this);" action="a.php">

Link to comment
https://forums.phpfreaks.com/topic/118051-radio-button/#findComment-611325
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.