On Aug 8, 5:10 pm, "cesar c" <[EMAIL PROTECTED]> wrote:
> I've a doubt....I dont know how to implement a tree dinamic with jquery...
> I see de treeview api but the tree's structure is in the body
>
> how can i build dynamically this tree with jquery?

You can build any DOM elements dynamically in jQuery using a number of
techniques. One of the simplest is:

$("body").append("<div>dynamically-created content</div>");

See:

http://docs.jquery.com/API/1.1.2/Core#.24.28_html_.29

Reply via email to