driver

How to roll back Windows drivers

A guy came into Dave’s Computers in New Jersey the other day having problems with his graphics card. He was experiencing artifacts and tearing on a game and the company who designed the game recommended rolling back his graphics driver. He didn’t know how, so came to us for help. That’s why today’s post is … 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(); }); });