I wrote below code to remove checked item from radio group in my form by double click.
$("input[type='radio']").each(function(){
$(this).dblclick(function(){
$(this).removeAttr("checked");
});
});
but this code doesn't work in FireFox but work in IE. anybody know what's the problem?
tanx