I face the same problem at the moment.
Same like Josh:
Tree with <ul> and I also want to submit the checked values via POST.
The problem is, I can't retrieve the values, because they are not
posted the the target script.
Here is my example:
<form action="/role/list" method="post">
<div id="tree">
<ul>
<li id="key1">Item 1</li>
<li id="key2">Item 2</li>
<li id="key3" class="folder">Folder 3
<ul>
<li id="key3.1">Sub-item 3.1</li>
<li id="key3.2">Sub-item 3.2</li>
</ul>
</li>
<li id="key4" class="folder">Folder 4
<ul>
<li id="key4.1">Sub-item 4.1</li>
<li id="key4.2">Sub-item 4.2</li>
</ul>
</li>
</ul>
</div>
<input type="submit" value="Senden" name="submit" />
</form>
Is there anything to be defined in the <HEAD>-Script?
What am I doing wrong?
Regards,
Hias