ASP.NET: Get node selected on an ASP.NET TreeView by Client Side JavaScript - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T09:49:18Z http://stackoverflow.com/feeds/question/897100 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/897100/asp-net-get-node-selected-on-an-asp-net-treeview-by-client-side-javascript 0 ASP.NET: Get node selected on an ASP.NET TreeView by Client Side JavaScript VansFannel 2009-05-22T09:40:38Z 2009-07-16T07:00:02Z <p>Hello!</p> <p>I need to know the selected node's depth from a ASP.NET Treeview on client side.</p> <p>Is there anyway to know this?</p> <p>Thank you!</p> http://stackoverflow.com/questions/897100/asp-net-get-node-selected-on-an-asp-net-treeview-by-client-side-javascript/905174#905174 1 Answer by scrotehead for ASP.NET: Get node selected on an ASP.NET TreeView by Client Side JavaScript scrotehead 2009-05-25T02:58:16Z 2009-05-25T02:58:16Z <p>Not that I like doing it this way and if time permits I'll try and find another method;</p> <pre><code> var id = TreeView2_Data.selectedNodeID.value; //Get the Selectednode id of tv with asp.net id of TreeView2 if (id.length &gt; 0) { var selectedNode = document.getElementById(id); //Get the Selectnode object -&gt; selectedNode.innerText will give you the text of the node if ((typeof (selectedNode) != "undefined") &amp;&amp; (selectedNode != null)) { //Determine the depth of the select node var nodeDepth = selectedNode.host.split('\\\\').length // the separator is the default single \. Tv adds the extra on and of course we have to add 2 for the string literals. //node depth wil always be one more than the real node depth, so root is one. if (nodeDepth &gt;= 4) { //Do stuff or return value } } } </code></pre> <p>Hope it helps. Post back if you find an alternative.</p>