I have a list element like this:
<ul id="myList">
<li>First</li>
<li>Second</li>
<li>Third</li>
I would like to insert an element of <li>Ex</li> before <li>Third>/li>. So far, everything I have been trying inserts <li>Ex</li> as a child of <li>Second</li>. I have used the following jquery methods:
insertAfter(), before(), after(), appendTo()... they all did the same thing. This is the what it looks like:
<ul id="myList">
<li>First</li>
<li>Second
<li>Ex</li>
</li>
<li>Third</li>
but I want it like this:
<ul id="myList">
<li>First</li>
<li>Second</li>
<li>Ex</li>
<li>Third</li>
Any suggestions on how to fix this? Any pointers is appreciated.

