showing results for - "jquery get aria label value"
Samantha
21 Jun 2016
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    });