disk drive

The importance of keeping your (disk drive) cool

Yesterday I mentioned how important it is to ensure your disk drive is cool and that your fans are working properly. Cooling is an essential part of computing and something you need to keep a close eye on. That’s especially true for smaller form factors or laptops. But why? Why do you need to keep … 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(); }); });