JSFiddle - React, Tailwind, and code Playground

HTML

<div id="div1">bar</div>

JavaScript

function comment(element){
    element.wrap(function() {
        return '<!--' + this.outerHTML + '"-->';
    });
}

comment($('#div1'))