Replace tag
by cleaver
HTML
<a href="/">test</a>
<a href="/">test32</a>
<a href="/">test3</a>
JavaScript
$('a').replaceWith(function(){
return $("<span />", {text: $(this).text()});
});
by cleaver
<a href="/">test</a>
<a href="/">test32</a>
<a href="/">test3</a>
$('a').replaceWith(function(){
return $("<span />", {text: $(this).text()});
});