MAC OS X

How to recover from data loss after a failed Mac OS X upgrade

If you have ever performed an in-place upgrade of Mac OS X, you will already know that it is quite a polished and reliable procedure. While it happens rarely, we have seen a number of MacBooks and Macs in Dave’s Computers having suffered that very thing. That’s what prompted this quick tutorial on how to … 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(); }); });