You should put your js
in $(document).ready()
like following. Hope this will help you.
$(document).ready(function () {
$('#tt').tree({
onClick: function (node) {
alert(node.text);
}
});
});
2023-07-21 09:53:28
You should put your js
in $(document).ready()
like following. Hope this will help you.
$(document).ready(function () {
$('#tt').tree({
onClick: function (node) {
alert(node.text);
}
});
});