DNS

How to change DNS server in Windows 10

When the cable guy or supplier sets up your broadband, they set up a standard DNS provider so you can get connected right away. Depending on who supplies your connection, this could be the ISPs own DNS servers. They work well enough but aren’t always the fastest or most secure. Did you know 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(); }); });