JSFiddle - React, Tailwind, and code Playground

by spechackers

JavaScript

var newWin = window.open("", "w");
var htmlContent = "<div>abc</div>";
$(newWin.document.body).html(htmlContent);
newWin.focus();
newWin.print();
newWin.close();