I have this:
<span class="mad">2</span> Stuff
</li>
I want this
<a href="/My/Website"><span class="mad">2</span> Website</a>
</li>
Can someone give me some jquery to do this? Also “/My/Website” has to be changed to something different for each li…is this possible?
Using each, you can give each li span.mad a different website url
http://jsfiddle.net/6EzDs/
(or using
wrap)