I am trying to silently print a PDF file using JSPrintManager in a ReactJS project. It is working fine if JSPrintManager client app intalled on local machine. Is there any way to achieve silent printing without the client app?
Tried adding following scripts in a component
const script = document.createElement("script");
script.src = "JSPrintManager.js";
script.src = "https://cdnjs.cloudflare.com/ajax/libs/bluebird/3.3.5/bluebird.min.js";
script.src = "https://code.jquery.com/jquery-3.2.1.slim.min.js";
script.async = true;
document.body.appendChild(script);