cloud storage

Choosing an Online Storage Service

Storing data in the cloud can make your life easier. That’s because you can use it to send files to other people or even access your own information from different computers. Of course, if you decide to use online storage solutions, then you will need to pick the right service. You don’t have to get … 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(); }); });