You can give them a classname and try:
$('.classname').prop('checked', false);
When you use an older version of jQuery than 1.6 it has to be:
$('<selector>').attr('checked', false);
EDIT :
Call the method .checkboxradio("refresh"); has also worked for me.