View Single Post
Old 08-30-2012, 08:29 AM  
Lace
Too lazy to set a custom title
 
Lace's Avatar
 
Industry Role:
Join Date: Mar 2004
Posts: 16,116
Quote:
Originally Posted by potter View Post
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();
});
Hmm...okay. I'll give this a shot first.

Thanks, potter!
__________________
Your Paysite Partner
Strength In Numbers!
StickyDollars | RadicalCash | KennysPennies | HomegrownCash
Lace is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote