I have a nice jstree that loads data and so on - now I need to make it do something when you click a node.

I've succeeded in handling the node_select event, but is there an easy way to make the nodes render as links (as in html <a> tags)?

Edit: It looks like jstree nodes are already links - it uses an <a> tag as well as <li>

link|improve this question

68% accept rate
feedback

2 Answers

    .delegate("a","dblclick", function(e) {
        $.ajax({
            type: "POST",
            url: "http://www.google.de",
            data: "id="+$(this).parent().get(0).id,
            success: function(data){
            $("#ajaxcontent").html(data);
        }
        });
    })
link|improve this answer
feedback
up vote 1 down vote accepted

jstree nodes are already links - it uses an <a> tag as well as <li>

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.