Hello.
I'd love to know that how to create a list from block of text. Let me explain..
Here's my html:
<div class="asd">
well
worth
it
</div>
And this should be automatically converted to list like this:
<div class="asd">
<ul>
<li>well</li>
<li>worth</li>
<li>it</li>
</ul>
</div>
Hope you understood :-D I've already tried it with various methods but I'm not familiar with jQuerys element-functions yet.
Martti Laine