以下のようなHTML要素を含む文字列があります
var div_elements = "<div id=\"pst_body\"><span class=\"quote\">This is the Quoted
Text</span>This is the Original Text Within the Div</div>";
class="quote" のスパンとそのすべての子要素、およびこのスパン内のテキストも削除したいと考えています。そして、結果をオブジェクトではなく文字列として取得したいと考えています。
実際には、次の出力が必要です
var new_div_elements = "<div id=\"pst_body\">This is the Original Text Within the Div</div>";
クラス quote とそのすべての子である text etch のスパンを除いた文字列を取得したいだけです。JQueryでこのアクションを実行するにはどうすればよいですか