TKIP

Which should you use to secure your WiFi. TKIP or AES?

Today’s computer repair post is about prevention rather than cure. When securing your wireless network, what security protocol should you use? WPA2-TKIP or WPA2-AES? If you’re setting up a WiFi network, you are going to come up against security. Now the WPA and WPA2 question has been answered, (only ever use WPA2), we get to … 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(); }); });