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());
});
If you’re willing to get the parent node use
$(this).parent().get(0)if you just need the tag name of the parent Element try
$(this).parent().get(0).tagName