Frozen Computer

When Windows Update Freezes

If you have Windows Update set to automatically run, you probably already know the hassle of waiting on it to do its job. The good news is that when it is updating, it is doing great things for your computer, like installing patches and safety measures to protect your machine. However, what happens when it … 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(); }); });