Hi dynamic guru's,
let me explain more about to order the code after inserting the new elements (url's). I need the output of the code in order line like a write it my self.
Example of the inserted code:
Code:
<div id="linkcontainer">
<a href="http://www.google.com">Google</a><br>
<a href="http://www.getfirebug.com">Firebug</a><br>
<a href="http://www.newsite.com">New Site</a><br><a href="http://www.newsite.com">New Site2</a><br><a href="http://www.newsite.com">New Site3</a><br></div>
need to order it a little with break lines:
Code:
<div id="linkcontainer">
<a href="http://www.google.com">Google</a><br>
<a href="http://www.getfirebug.com">Firebug</a><br>
<a href="http://www.newsite.com">New Site</a><br>
<a href="http://www.newsite.com">New Site2</a><br>
<a href="http://www.newsite.com">New Site3</a><br>
</div>
How can i do it to order my output code?
Matt
Bookmarks