Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to print just the contents of a colorbox

$(".print-invoice").on("click", function(event){
    window.print();
  return false;
});

This prints the whole page, the file path is popups/info.html

share|improve this question
Possible duplicate Print <div id=printarea></div> only? – arun Apr 30 '12 at 10:34

2 Answers

You can try this:

$(".print-invoice").click(function() {
    $('#the_Iframe_ID')[0].print();
});
share|improve this answer
$('#myid')[0].print(); //console - is not a function – welovedesign Apr 30 '12 at 11:11
Try: $("#the_Iframe_ID").get(0).contentWindow.print(); – Zuul Apr 30 '12 at 12:31

Its a few months late, but for the benefit of anyone else who may come across this: If you use an iframe to display the content, then a print button in that content will only print whats in the colorbox. To use an iframe, set the iframe setting to true:

$(document).ready(function(){
    $(".linktocolorbox").colorbox({iframe:true});
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.