ASP.NET Treeview control and Client side javascript - Highlight selected tree view node - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T16:48:55Zhttp://stackoverflow.com/feeds/question/849370http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/849370/asp-net-treeview-control-and-client-side-javascript-highlight-selected-tree-vie1ASP.NET Treeview control and Client side javascript - Highlight selected tree view nodebugBurger2009-05-11T18:20:25Z2009-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#8694311Answer by bugBurger for ASP.NET Treeview control and Client side javascript - Highlight selected tree view nodebugBurger2009-05-15T15:43:02Z2009-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>