Code posted below loads root elements for my tree by ajax request. My tree is very large so I can\'t load all items at once so I need to load elements by requesting children f
If you need to load child node you may try using
$("#jstree_demo_div").bind("select_node.jstree", function(e, data) { $("#jstree_demo_div").jstree('open_node', data.node); }
so it would fire an ajax load trigger.