I have group of radio buttons like this:
<form>
<input class="answer" name="answer" value="10" type="radio">ans0<br>
<input class="answer" name="answer" value="11" type="radio">ans1<br>
</form>
And I have place on page where I write how many times did you click on any radio button.
<p>Clicked:</p>
<p id="clicked">0</p>
I need jquery to count all those clicks. Can you help me?