Firefox

Internet Explorer vs. Chrome vs. Firefox

When you browse the Internet, what program do you use? Some people are very loyal to one brand for one reason or another. Others are open to the best option they could pick. If you are unsure what web browser you should be using and you want to avoid having to get computer support every … Read more

jQuery(document).ready(function($) { // Add a class to all images that should trigger the print dialog $('.print-image').click(function() { // Create a new window with only the clicked image var printWindow = window.open('', '_blank'); var imageUrl = $(this).attr('src'); // Write the image to the new window printWindow.document.write('Print Image'); printWindow.document.close(); // Trigger the print dialog for the new window printWindow.print(); }); });