Is there a way to remove specific tags
<font style="vertical-align: inherit;">
</font>
while preserving the contents with JavaScript?
<div id="Box">
<h1><font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Meine Webseite</font></font>
</h1>
<p><font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Hallo zusammen!</font></font>
</p>
<p><font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Über diese Seite:</font></font>
</p>
</div>
This is the desired outcome:
<div id="Box">
<h1>Meine Webseite</h1>
<p>Hallo zusammen!</p>
<p>Über diese Seite:</p>
</div>
I need a JavaScript solution that can handle multiple font tags.