Posted: Tue Aug 22, 2006 4:47 am
hi again.. yes that resolved the problem with the <ul></ul> tags.. mas the code still wrong..
the is the returned code:
the problem is the script close <li>'s tag before open the sub level <ul>'s.
the correct code is like this one:
this is the last problem.. i hope :p
the is the returned code:
Code: Select all
<ul>
<li>Cat 1</li>
<ul>
<li>Cat 1-1</li>
<li>Cat 1-2</li>
<li>Cat 1-3</li>
<ul>
<li>Cat 1-3-1</li>
<li>Cat 1-3-2</li>
<li>Cat 1-3-3</li>
<ul>
<li>Cat 1-3-3-1</li>
</ul>
<li>Cat 1-3-4</li>
</ul>
<li>Cat 1-4</li>
</ul>
<li>Cat 2</li>
<ul>
<li>Cat 2-1</li>
<li>Cat 2-2</li>
<li>Cat 2-3</li>
</ul>
<li>Cat 3</li>
<li>Cat 4</li>
</ul>the problem is the script close <li>'s tag before open the sub level <ul>'s.
the correct code is like this one:
Code: Select all
<ul>
<li>Cat 1
<ul>
<li>Cat 1-1</li>
<li>Cat 1-2</li>
<li>Cat 1-3
<ul>
<li>Cat 1-3-1</li>
<li>Cat 1-3-2</li>
<li>Cat 1-3-3
<ul>
<li>Cat 1-3-3-1</li>
</ul>
</li>
<li>Cat 1-3-4</li>
</ul>
</li>
<li>Cat 1-4</li>
</ul>
</li>
<li>Cat 2
<ul>
<li>Cat 2-1</li>
<li>Cat 2-2</li>
<li>Cat 2-3</li>
</ul>
</li>
<li>Cat 3</li>
<li>Cat 4</li>
</ul>