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
}
