I want to be able to uncheck a radio button by clicking on it.
So, if a radio button is unchecked, I want to check it, if it is checked, I want to uncheck it.
try this:
$('input[type=radio]').click(function(){ if (this.previous) { this.checked = false; } this.previous = this.checked; });