メモ
<script type="text/javascript">
$(function () {
$("#testTree")
.jstree({
"plugins" : [ "themes", "html_data", "ui" ],
"themes" : {"theme" : "apple", "dots" : true, "icons" : true },
})
//選択された値を取得
.bind("select_node.jstree", function (event, data) {
var href = data.rslt.obj.children("a").attr("href");
$("#contents").load(href);
document.location.href = href;
})
});
</script>