JSFiddle - React, Tailwind, and code Playground
by bighostkim
JavaScript
$(document).ready(function() {
$(document.body).append('<IFRAME id="pdfLabel" />');
$('#pdfLabel').attr('src', 'http://www.selab.isti.cnr.it/ws-mate/example.pdf');
$("#pdfLabel").ready(function() {
console.log(
$('#pdfLabel')[0].contentWindow.document.readyState
);
$('#pdfLabel')[0].focus();
$('#pdfLabel')[0].contentWindow.print();
});
});