2

Is there a way to enable the user to cancel his click on a radio button ?

Preferably, without jQuery or even Javascript.

<label class='radio inline'>
    <input name='sexe' type='radio' value='1'/>
    Male
</label>
<label class='radio inline'>
    <input name='sexe' type='radio' value='2'/>
    Female
</label>

JSFiddle : http://jsfiddle.net/dEDbN/

Arnaud
  • 4,884
  • 17
  • 54
  • 85
  • 1
    possible duplicate of [JQuery How to Uncheck A radio button](http://stackoverflow.com/questions/2117538/jquery-how-to-uncheck-a-radio-button) – dsgriffin May 11 '13 at 10:44
  • 1
    Ok, thank you. In order to make my question useful to SO, I've changed the title. – Arnaud May 11 '13 at 10:55

1 Answers1

3

Try the reset button. I don't think there is a way to do it without trying something of ajax or jquery.

Souad
  • 4,856
  • 15
  • 80
  • 140