I want to use jquery to build HTML like this:
<li><a href="#"><span class="play"></span><span class="trackName">Track Name</span></a></li>
It seems simple but I can’t figure it out how to include HTML tags as part of my anchor text.
If I use something like:
$("<a />", { text: $('<SPAN class="play" />') + "Track Name" })
then the span tags get escaped.
There are several ways to do it, including (but not limited to):
Note that
.html()replaces any and all existing contents, while.append()adds to the end. So given that you have two span elements in your example you could create those independently and append them one at a time: