Is there a way to clear out all nodes from a jsTree that's faster than walking through all the nodes deleting them one-by-one?

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

See the documentation here: http://www.jstree.com/documentation/core

.delete_node ( node )

Removes a node. Triggers an event.

mixed node

This can be a DOM node, jQuery node or selector pointing to the element you want to remove.

It seems you can just do a selector that will delete all the nodes you want, no loops required.

link|improve this answer
That does seem to work. I'd been using remove(), and it wasn't working. – Jeff Dege Jun 9 '11 at 19:13
myJsTree.delete_node(treeDiv.find('> ul > li'); – Jeff Dege Jun 9 '11 at 19:25
My familiarity is low, but it seems you can clean that up to simply be the selector itself and not the nodes themselves. Something along the line of myJsTree.delete_node('[treediv] > ul > li'); – Adam Terlson Jun 9 '11 at 19:28
feedback

The simplest way I have found is to simply call .empty on the div containing the tree.

$('#tree').empty();

You might choose to use a more specific selector as a parameter for empty(), but this works fine for me.

link|improve this answer
feedback

Call .remove(node) on the root nodes.

link|improve this answer
feedback

The following call will destroy the current instance of jsTree, remove any bound event listeners and obviously achieve your ultimate goal of removing all nodes. But this method is a bit of a over-kill, it has to be said.

$("#DivElementContainingYourTree").jstree("init");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.