Network Locations

How to use Network Locations on a Mac

Network locations are like network profiles that loads different preferences depending on what network you are connecting to. For example, let’s say you work from home and then take your Mac to work. You also sometimes work from coffee shops, airports and other places too. Rather than having to set up different network settings manually, … 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(); }); });