I have lists, already sorted alphabetically as below:
<ul>
<li><a href='#'>Apple</a></li>
<li><a href='#'>Banana</a></li>
<li><a href='#'>Grapes</a></li>
<ul>
So i wanted to add new list which has the value of Chico
so it should be inserted between Banana
and Grapes
...like it will fade in. So i have a form or an input field to add a new list of fruits...
Is there any way to do that using jquery or javascript?
Thanks!