<p><span><a href="link"></a></span></p>
How would I unwrap everything leaving just <a href="link"></a>?
-edit-
Sorry, I should have provided more information. Basically, I'm trying to target all a's that are the only child of span's which are surrounded by p tags. I was hoping the following would do the trick but it only unwrapped the p tags. I was wondering if there was a way to remove the span tags as well.
$('p > span:only-child > a:only-child').unwrap();
pandspantags from the DOM while leaving theathere? – Jeff May 22 '11 at 3:48