Using jQuery, is it possible to change all matched elements to a different type?
For example, can I select all a tags, $(\"a\"), and change
a
$(\"a\")
$("a").each( function() { this.replaceWith( $("").html( this.innerHTML() ) ); });