Hello, I'm using prepend() and the result seems to be buggy.
$('#element').prepend('<div><a href="http://google.com"><a href="http://test.com">Test.com</a> - A site</a></div>');
And the html result (also viewed with Firebug) is buggy:
<div>
<a href="http://google.com"></a>
<a href="http://test.com">Test.com</a> - A site
</div>
(The links are just example links)