I have a div id="result" that I use to display results of users actions. I put there plain text and html too. After each user action this div is overwritten with new results.
Now I want to display inside this div an instance of jsTree I have working jsTree that loads nicely on page load but it doesn't load after <div id="tree"></div> is inserted inside my result div.
I tried two lines below but none worked.
$("#tree").jstree("loaded");
$("#tree").jstree("refresh");
Any idea how to make the jsTree to be displayed a after button click? Please play on jsfiddle where you can see one tree already and I want another to be displayed after clicking the button. I am after the tree not the text.
I think I need to reload or refresh the tree after I place jstree div inside html.