tab index not working in php? am i doing something wrong?

  • Thread starter Thread starter titchyc
  • Start date Start date
T

titchyc

Guest
Am i doing something wrong?. i have a form with 2 radio buttons that i want to tab to the next radio button, then to a submit button, but it is not working. the code is as follows:

<input type=radio name=answer tabindex=0 value=No checked>*NO<br/><br/>
<input type=radio name=answer tabindex=1 value=Yes>*YES</P>';

echo '<center><br/><br/><input type=submit name=submit tabindex=2 value="Next Question"><br/><br/></center>';
 
Back
Top