Greetings

I need to track the print event in the browser window in the client JS / JQ. For example: the user chooses to print (for example, using Adobe Reader) and when clicked, goes to a new browser window, where the actual page goes to print, printer settings, and so on. standard Adobe window. Is it possible to track the print event just by clicking on "Print" in this window Adobe from client JS / JQ, i.e. exactly when you press and directly launch the document to the printer?

I tried to use this resource , but this script only works when you press CTRL + P in the window, and not in the case of a button for printing on the site. It is necessary to track exactly the specific fact of printing, and not the opening of the Adobe window.

Thank you in advance!

  • JS does not have access to the standard print window. You can only change the appearance of styles, no more. - VenZell

1 answer 1

Unfortunately (and perhaps fortunately), there is no possibility to track this event, since the context of the execution of JavaScript and the print program (or the browser plugin, depending on what is being called) are completely different things that have nothing in common with each other.