$()

in script.js [121:130]


            $(this).parent().parent().find('input:checkbox.fbmcc-submenuOption').each(function() {
              if ($(this).is(":checked")) {
                has_selected_item = true;
                if ($(this).hasClass("fbmcc-activePageOption")) {
                  pages.push($(this).attr('id').replace('pageid_', ''));
                }
              } else {
                has_unselected_item = true;
              }
            });