I am trying to create a master toggle function that will collapse/expand all the mini toggles. my mini toggle function is:
$('.tog').toggle(
function(){
$('#togStat').val(1);
var myID = $(this).attr("id").split('-')[1];
$('#collapseObj-'+myID).hide();
$('#collapseImg-'+myID).attr({src:'images/collapse_tcat_collapsed.gif'});
},
function(){
$('#togStat').val(0);
var myID = $(this).attr("id").split('-')[1];
$('#collapseObj-'+myID).show();
$('#collapseImg-'+myID).attr({src:'images/collapse_tcat.gif'});
});
and the master one is:
<cfoutput>
$('.togAll').toggle(
function(){
<cfloop from="1" to="10" index="i">
$('##collapseObj-#i#').hide();
$('##collapseImg-#i#').attr({src:'images/collapse_tcat_collapsed.gif'});
</cfloop>
$('##collapseImg-All').attr({src:'images/expand_icon.png'});
$('##collapseImg-All').attr({title:'expand all'});
$('##collapseImg-All').attr({alt:'expand all'});
},
function(){
<cfloop from="1" to="#getMaxCatID.catID#" index="i">
$('##collapseObj-#i#').show();
$('##collapseImg-#i#').attr({src:'images/collapse_tcat.gif'});
</cfloop>
$('##collapseImg-All').attr({src:'images/collapse_icon.png'});
$('##collapseImg-All').attr({title:'collapse all'});
$('##collapseImg-All').attr({alt:'collapse all'});
});
</cfoutput>
i am using coldfusion. the master function loops through 1 to X and creates something similar to:
$('#collapseObj-1').hide();
$('#collapseObj-2').hide();
$('#collapseObj-1').hide();
my problem is when i click on the master toggle, i have to double click on the mini toggles in order to open the collapsed divs. is there a way to change toggle(even,odd) to toggle(odd,even) ? thanks
$('some selector').show().attr(...);additionally, most of the objects you're passing toattrcan be condensed into one call. – zzzzBov Dec 21 '10 at 19:01$('#element_id').attr({key1:val1, key2:val2, key3:val3});You should read up on jQuery basics. – rfunduk Dec 21 '10 at 19:43