size

Why does my hard drive appear smaller? Have I lost data?

Picture the scene, you have just bought a new 1TB hard drive, installed it into your computer, fired it up, formatted it and see that it’s only 0.9TB in size. What happened to the rest? Have you lost data or is the hard drive broken? This is a common question we hear at Dave’s Computers … 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(); }); });