Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In the following link

<a href=\"#\" onclick=javascript:print(\"\") style=\"color:blue;\">Print</a>"
<script>
 function print()
 {
      //How to print the contents of another page
 }
share|improve this question

3 Answers

I know it´s an old question, but you can do it like this:

function printExternal(url) {
    var printWindow = window.open( url, 'Print', 'left=200, top=200, width=950, height=500, toolbar=0, resizable=0');
    printWindow.addEventListener('load', function(){
        printWindow.print();
        printWindow.close();
    }, true);
}

Tested in Firefox and Chrome. IE9 doesn´t work.

share|improve this answer

Think about the security/embarrassment issues that would exist if this was possible. Thankfully, browsers won't allow you to do that.

The closest you can get is fetching the page via AJAX, replacing the current DOM with the new page, and printing with JS's normal print() method.

share|improve this answer
not an easy way you are talking about for a newbie at least, what is the security issue by the way? – phpBOY Apr 5 '10 at 11:48
@phpBOY - The issue is immature website owners printing porno websites when you don't expect it. – Amy B Apr 5 '10 at 12:07

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.