I want to remove the span using jQuery, I have tried the .unwrap(); but it\'s not working.
.unwrap();
<
$("span").each(function() { var content = $(this).text(); $(this).remove(); $("a").html(content); });