debussy007 schrieb:
Hello,

I always used to uncheck a radio button this way :
$('#radio_shuttle_1_4')[0].checked=false;

The problem is that when using a selector that matches more than one
element, it will not work.
e.g. : $('[EMAIL PROTECTED]')[0].checked=false; will not work.
Give this a try: $(".selector").attr("checked", false);

Jörn

Reply via email to