Would it be possible with jQuery to find in all symbols that are written with
®
and wrap them with a sup tag?
<sup>®</sup>
Would it be possible with jQuery to find in all symbols that are written with
®
and wrap them with a sup tag?
<sup>®</sup>
var replaced = $('body').html().replace('®', '<sup>®</sup>');
$('body').html(replaced);