Currently, I am exploring the jqprint plugin and am quite impressed with its functionality, except for one issue. I am trying to add color to the object that I want to print, but my attempts to colorize the object before sending it to Jqprint have been unsuccessful. I am aware that CSS can be added inside a @media tag, but when my HTML content is displayed in the print preview in Chrome, it appears to be converted into a PDF format, making it challenging to access the elements like standard HTML.
Are there any alternative printing plugins that anyone can recommend, or does anyone have suggestions on how to incorporate color into my printing using jqprint?
Essentially, I have a table that I pass to jqprint using the following code:
var $printStuff = $("#divTable");
$printStuff.jqprint();