Thank you for your help. However I got an error, it says suicide is not a function. Here is my code, "cs_tree_menu" is the id of my treeview.
CODE
var tree = document.getElementById("cs_tree_menu");
tree.suicide();
suicide is a wrapper method, it's not available on the dom element. Do this instead:
CODE
var tree = $("cs_tree_menu");
tree.suicide();
By the way, we don't use YUI, we use
KONtx.