I have a table of 2 columns, the first column are all tick boxes (e.g. Q4a1), the second column are all radio buttons (e.g. Q4a2), I want to display the heading of the 2nd column if at least one tick box has been selected in Q4a1, however it's currently not working with the following script:
//only display the radio button in column 2 if the corresponding box in column 1 has been selected.
$('input[id*=Q4a1]').each(function(i){
var j=i+1;
var count;
$(this).parent().click(function(){
if($(this).children().is(':checked'))
{$('#Q4a2_'+j).parent().show(0);count++;}
else
{$('#Q4a2_'+j).parent().hide(0);count--;}
return count;
if(count>0){$('#Q4a_header2').show(0)}else{$('#Q4a_header2').hide(0)}
});
});
I believe this is something to do with the "each" function, as "count" will be reset at each iteration. However it doesn't work neither if the last "if" condition is outside the brackets.
The original function to display the radio button if the corresponding tick box has been selected is working perfectly fine, e.g:
$('input[id*=Q4a1]').each(function(i){
var j=i+1;
$(this).parent().click(function(){
if($(this).children().is(':checked'))
{$('#Q4a2_'+j).parent().show(0);}
else
{$('#Q4a2_'+j).parent().hide(0);}
});
});
Just not sure how to incorporate the "heading" text into this under the above condition. Or if it's easier to write them as seperate functions will also be fine for me.
Any help will be much appreciated!
Many thanks, Roy
I've worked out myself, here is the updated script:
var count = 0;
$('input[id*=Q4a1]').each(function(i){
var j=i+1;
$(this).parent().click(function(){
if($(this).children().is(':checked'))
{$('#Q4a2_'+j).parent().show(0);count++;if(count>0){$('#Q4a_header2').show(0)}}
else
{$('#Q4a2_'+j).parent().hide(0);count--;if(count<=0){$('#Q4a_header2').hide(0)}}
return count;
});
});
Cheers, Roy