1$(".togSubList").each(function () {
2 var bob = $(this).find(".parent_link").text();
3
4 $(this).find(".sub-expand_collapse[aria-expanded='false']").attr("aria-label","expand " + bob);
5 $(this).find(".sub-expand_collapse[aria-expanded='true']").attr("aria-label","close " + bob);
6
7
8 });