« Example 3 Example 5 »

Example 4 - Save the state

If you set the option saveState to true, then jqtree remembers the tree state after a page reload.

html

<div id="tree1" data-url="/example_data/"></div>

javascript

$('#tree1').tree({
    saveState: true
});

Giving the saveState a string value sets the storage key. The default key is 'tree'.

$('#tree1').tree({
    saveState: 'my-tree'
});