Hi, ive downloaded a treeview plugin for jquery (from http://jquery.bassistance.de/treeview/) and ive got a problem with it, because it doesnt generate anything visible.
Ive generated a json string with php:
[{"text": "RSS feed"},
{"text": "Documents", children: [{"text": "test.txt"}]},
{"text": "Todo lists"}]
The jquery code looks like this:
$("#baskets_tree").treeview({collapsed:false,url: "http://localhost/json.php?q=baskets"});
and of course the file contains a list:
<ul id="baskets_tree"></ul>
Everything is loaded, the json code is requested, and nothing changes on the screen. So what could be the problem with this? Any ideas?