I am using below code while page load to generate a tree using jsTree.
$('#jstree_demo_div').jstree({
'core': {
'themes': {
'name': 'proton',
'responsive': true
},
'data': results,
"check_callback" : true
}
});
All is working fine and results array is showing as tree.I want to add /append dynamically child nodes while clicking on few of the nodes in this static tree.
Please help.