Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to refer to an HTML radio button either from javaScript or within PHP.

Now I have:

<input type="radio" name="aa" id="T2S1" value="T2S1"/> IamRadioButton

I want to refer to this button later to check it, based on some condition, so something like:

if ( condition ) {

   //check radio button

}
share|improve this question
7  
You did not do any research on this, did you? Hint: Please avoid "I need this, write some code for me" questions. – Tomalak Jan 27 '12 at 17:21
What exactly do you mean by "check it"? Checking an input element by PHP and JavaScript are quite different. – j08691 Jan 27 '12 at 17:26
Yes, make good use of stackoverflow as there is already a google available for it. – Angelin Nadar Jan 27 '12 at 17:26
What have you tried? – nfechner Jan 27 '12 at 20:41

closed as not a real question by animuson, nfechner, hakre, iWasRobbed, Bill the Lizard Jan 28 '12 at 16:56

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

You'd better use jquery. Something like this:

var radioButtonValue = $("input[name='aa']:checked").val();

this way you'll get the value of the cheked button

share|improve this answer
5  
"You'd better use jquery." - Why? – Tomalak Jan 27 '12 at 17:25
I think it's easier to get element using jquery selectors rather than giving id or name to every element you have on your page. Besides it also helps if you generate those buttons dynamically. – Sergei Kutanov Jan 27 '12 at 18:25
That's true, but I think not every small problem justifies the immediate triggering of the "Just just jQuery!" reflex. ;) – Tomalak Jan 27 '12 at 18:53
<input type="radio" name="aa" id="T2S1" value="T2S1"/> IamRadioButton1
<input type="radio" name="aa" id="T2S2" value="T2S2"/> IamRadioButton2
<input type="radio" name="aa" id="T2S3" value="T2S3"/> IamRadioButton3

Acces, like this:

if ( condition ) {
   if ($_POST['aa'] == "T2S1")
     //first radio checked
   else if($_POST['aa'] == "T2S2")
     //second radio checked
   else if($_POST['aa'] == "T2S3")
     //third radio checked
}
share|improve this answer

Hope below is what you want...

<html>
<body>
<form name="myForm">
<input type="radio" name="myRadio" value="r1" id="r1">Radio 1
<input type="radio" name="myRadio" value="r2" id="r2">Radio 2
<br><br>
<input type=submit value="Radio 1" onClick="document.getElementById('r1').checked = true ; return false">
<input type=submit value="Radio 2" onClick="document.getElementById('r2').checked = true ; return false">
</body>
</html>

Good Luck!!!

share|improve this answer

In javaScript:

document.getElementById ('T2S1').checked = true;

In PHP, you have to generate the abovementioned javaSctript code and let it somehow be executed on the client.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.