I am including a check(if($(this).val() > 0) ) inside the loop which I want to eliminate and include that condition in the main statement?
$('#subtabs').find("input[type='radio'][id^='cf_']:checked")....
$('#subtabs').find("input[type='radio'][id^='cf_']:checked").each(function (index, value) {
if($(this).val() > 0) {
.....
});
}
});