I\'ve been trying to get the text of a node that is selected in a jsTree. I am able to populate the tree and trigger the onSelect event, but I can\'t find out which node was cli
jstree new version for get text from node should use data.node.text
$("#treeContainer").on("select_node.jstree", function(evt, data){ alert(data.node.text); } );