How to get the parent node name of the checked child node of ASP.net TreeView Control using jquery/javascript ?
$('#<%=treeMeasures.ClientID%>').find('input[type=checkbox]').each(function() {
alert($(this).parent().text());
});