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)

link|improve this question

1  
you have a a within a a – David Jun 29 '10 at 17:52
You cant make a link that goes to 2 locations. – digitalFresh Jun 29 '10 at 17:53
feedback

3 Answers

up vote 4 down vote accepted

You can't have an anchor inside an anchor...so it's not "buggy", it's behaving unexpectedly with invalid HTML, but when HTML is invalid that's...well, expected.

Think about it this way, if you clicked on the inside anchor, where should your browser go? You clicked on http://test.com and http://google.com.

link|improve this answer
feedback

As I know, nested links (the a elements) are not allowed in html. So browser closes first before the second. It has no connection to jQUery.

link|improve this answer
feedback

Nesting anchor tags is also buggy.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.