Hi
I use jstree 3.0.0.b4
How can i use get_json to get simple json string like this:
{
id : "string" // required
parent : "string" // required
text : "string" // node text
}
this is simple string / json which can i insert into database.
$( "#target" ).click(function() {
var v =$('#jstree2').jstree(true).get_json();
var mytext = JSON.stringify(v);
alert(mytext);
});