ASP.NET Treeview control and Client side javascript - Highlight selected tree view node - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T16:48:55Z http://stackoverflow.com/feeds/question/849370 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/849370/asp-net-treeview-control-and-client-side-javascript-highlight-selected-tree-vie 1 ASP.NET Treeview control and Client side javascript - Highlight selected tree view node bugBurger 2009-05-11T18:20:25Z 2009-05-15T15:43:02Z <p>How to do following - ASP.NET 2.0 TreeView and Selecting the Selected Node <strong>using JavaScript</strong></p> <p>I am trying this by reading <a href="http://www.codeproject.com/KB/webforms/ClientSideTreeView.aspx" rel="nofollow">this article</a>,but it does not find getTreeNode() property on asp.net 2.0 treeview control.</p> http://stackoverflow.com/questions/849370/asp-net-treeview-control-and-client-side-javascript-highlight-selected-tree-vie/869431#869431 1 Answer by bugBurger for ASP.NET Treeview control and Client side javascript - Highlight selected tree view node bugBurger 2009-05-15T15:43:02Z 2009-05-15T15:43:02Z <p>JQuery Solution - for selecting single node (highlighting) ASP.NET 2.0 Treeview Control on Client Side</p> <p>$("#TreeView1t5").addClass("TreeView1_5");</p> <p>Where #TreeView1t5 is id of node and TreeView1_5 is css class for selection.</p> <p>Enjoy..!</p>