View Single Post
Old 08-30-2012, 08:02 AM  
potter
Confirmed User
 
Industry Role:
Join Date: Dec 2004
Location: Denver
Posts: 6,559
You could use jquery to on-click of an image, (hide) all images except the one clicked on, and then fire the print function. That way the page should only print the image desired.

Something like
Code:
$('div.container img').click(function() {
    $('div.container img').hide();
    $(this).show();
    window.print();
});
__________________

potter is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote