How to unwrap a text from a HTML tag using jQUery?
For instance, how to transform this HTML
A sentence with bold
To unwrap only text and nothing else you could use:
$("b").replaceWith($("b").text());