Is there a way to add a Tooltip to a JSTree node? I would like to display extra information when the user hovers over an element.
I\'m pretty dense when it comes to
Do create tooltip bind the values with jstree .bind("hover_node.jstree", function(e, data){
$("#").attr("title",data.node.text); });