Support

Account

Home Forums Add-ons Flexible Content Field Create a global counter for a layout type Reply To: Create a global counter for a layout type

  • Hi @egr103

    Thanks for the info.

    Yes, all you need to do is move the $j = 0; up a few lines and next to your $i = 1;

    This means it is only reset once per page!

    As for your code, you don’t even need to use ID’s realy, you could just use jQuery to find all ‘.accordion’ and run the jQuery plugin like so:

    
    $('.accordion').each(function(){
        $(this).navgoco({accordion: true});
    });
    

    Hope that helps.

    Thanks
    E