Hi All, I want to print a form directly in the printer, right now I'm using the below jQuery code to trigger the print engine. $(document).ready(function () { setTimeout(function() { window.print(); }, 1000); }); Instead of that, once the print button is clicked I want to print the form directly in the printer. Please share how I can do that. Thank you.