https://www.codeproject.com/Articles/1077799/Creating-Dynamics-Tree-View-Menu-in-ASP-NET-MVC-in?msg=5533723#xx5533723xx
i am using this i want when i click to tree view node i get the name of selected node i click
To get the name of selected node refer the below jQuery script.
<script type="text/javascript"> $(function () { $('.treeview a').on('click', function () { alert($(this).text().trim()); }); }); </script>
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.