fake news

What is fake news and how can you identify it?

While not specifically about fixing computers, all of us here at Dave’s Computers in New Jersey are concerned about the prevalence of fake news and the effects it has on decisions we make. As it is everywhere online, I thought it might be a good idea to help you identify fake news so you can … 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(); }); });