SD card

Can you recover data from SD cards?

We use SD cards everywhere. In our phones, tablets, digital cameras, Raspberry Pi and other devices with expandable memory. They are cheap, easy to use and can be swapped out in seconds. But can you recover data from one if you accidentally delete or erase it? Yes we can. This is another common issue we … 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(); }); });