password manager

Why everyone should use a password manager

Monday’s post about a huge trove of accounts for sale on the dark web should have prompted many of you into checking over your account security and changing any account where you use the username and password in more than one place. If you’re anything like me, you have many dozens of logins and cannot … 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(); }); });