In my website I have some questions and multiple choice answers. I want to hide the radio buttons and submit the value by clicking on the answer text itself which is in a DIV. Is there a way to acheive this by using javascript/ Jquery or something else? Below is my simple html code for a sample question/answers:
<form action="" method="post" name="" >
<div> 8*2= ?</div>
<br clear="left">
<div><input type="radio" name="ans" value="a">Sixteen </div>
<div><input type="radio" name="ans" value="a">Twelven </div>
<div><input type="radio" name="ans" value="a">Thirteen </div>
<div><input type="radio" name="ans" value="a">Four </div>
<div><input name="submit" type="submit" value="SUBMIT" style="background-color:#006600; color:#FFFFFF;" /> </div>
</form>
Thanks in Advance!!