Support

Account

Home Forums Add-ons Repeater Field WordPress acf trying to hide and show divs in a list, using acf repeater field Reply To: WordPress acf trying to hide and show divs in a list, using acf repeater field

  • You are right im sorry about that.
    Its been awhile since i worked on this, but im pretty sure this is fix:

    <script>
    jQuery(document).ready(function(){

    jQuery(‘body’).on(‘click’, ‘ul.videoul li’, function() {
    jQuery(“div.myDIV”).hide();
    jQuery(this).find(“div.myDIV”).toggle();

    });
    });
    </script>