$(\"#ifTree\").jstree({
\"plugins\" : [\"themes\",\"html_data\",\"ui\",\"crrm\"],
\"themes\" : {
\"theme\" : \"apple\",
Proper way to associate a data to node is as follows:
If you are adding more data i.e. attribute then mentioned all attributes (name, value) under "attr" property
"attr":{ attributeName1:"attributeValue1", attributeName2:"attributeValue2"...... }
$("#createIf_c").click(function () {
$("#ifTree").jstree("create",null,"inside",
{ "data" : "testNodeName",
"attr": { title:"if",value:"expression"} }, function() {}, true);
});