I'm able to generate tree, but when i try to create node on button click its not happening anything. Please help.
<script>
$(function() {
$('#container1').jstree({
'core' : {
"animation" : 0,
"check_callback" : true,
"themes" : { "stripes" : true },
'data' : [{"id":"Celulares","text":"Celulares","parent":"#"},
{"id":"AAA","text":"AAA","parent":"Celulares"},
{"id":"FamilyNames","text":"FamilyNames","parent":"#"},
{"id":"DDD","text":"DDD","parent":"FamilyNames"},
{"id":"CCC","text":"CCC","parent":"#"}
]
},
"plugins" : [ "dnd", "contextmenu", "massload", "search", "unique"]
});