jquery cloning is working, for example,
$("#treeFile" > ul:first > li:first ul > *).clone().appendTo("#dummyTree");
However when attempting to send this clone to a post ajax, the file is empty...
var cloneTree = $("#treeFile" > ul:first > li:first ul > *").clone();
$.post("tree.php", cloneTree);
When viewing firebug, this http request was successful but when viewing the file on the service file system, its empty...
{post1:"whatever",post2:"whatever2"...}