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.

My page structure is like

    <html>
    <body>
    <a href="#one">One</a>
    <a href="#two">Two</a>
    <a href="/" onClick="window.print();">Print One</a> // I want this to print "My Content 1"
    <a name="one" id="one">One</a>
    <div class="one">My Content 1</div>

    <a name="two" id="two">Two</a>
    <a href="/" onClick="window.print();">Print Two</a> // I want this to print "My Content 2"
    <div class="two">My Content 2</div>

    </body>
    </html>

Now I want to implement two different print buttons to print the specified element at a time. I'm familiar with CSS approach of printing and blocking the anti-print elements like sidebar, footer. For some reason, I don't want to use jquery though a lightweight js can be used.

share|improve this question
If you would like to use a light weight JS library alternative to jQuery you could use Zepto.js. It has similar syntax to jQuery so you might feel right at home. The source and documentation are on their GitHub page – hradac Feb 13 '12 at 17:59
@hradac I think using libraries for this purpose would be overkill. If there isn't any solution with css, I've a last option to change the whole page structure. – Navi Feb 13 '12 at 18:22
The entire library is about 7.5k minified and gzipped. That is smaller than most of the CSS I work with, and you mentioned 'a lightweight js can be used', but it's your choice. – hradac Feb 13 '12 at 20:09

1 Answer

up vote 1 down vote accepted

create two style templates, one that hides all but content 1, and other that hides all but content 2. Set both style blocks with ids (ex. id="printOne"), media="print" and with attribute disabled (or disabled="disabled" in XHTML)

when you click the print link you can set disabled = false on the appropriate style template to enable it for printing.

jsfiddle example

<!doctype html>
<html>
<head>
    <title></title>
    <style id="printOne" type="text/css" media="print" disabled>
        a, .two {display:none;}
        .one {display:block;}
    </style>
    <style id="printTwo" type="text/css" media="print" disabled>
        a, .one {display:none;}
        .two {display:block;}
    </style>
</head>
<body>
    <a href="#one">One</a>
    <a href="#two">Two</a>
    <a href="#" onClick="return printContent('printOne');">Print One</a> <!--I want this to print "My Content 1"-->
    <a name="one" id="one">One</a>
    <div class="one">My Content 1</div>

    <a name="two" id="two">Two</a>
    <a href="#" onClick="return printContent('printTwo');">Print Two</a> <!--I want this to print "My Content 2"-->
    <div class="two">My Content 2</div>

    <script type="text/javascript">
        function printContent(pid) {
            document.getElementById('printOne').disabled = !(pid === 'printOne');
            document.getElementById('printTwo').disabled = !(pid === 'printTwo');
            window.print();
            return false;
        }
    </script>
</body>
</html>
share|improve this answer
Thanks a lot for both, the solution and reference to jsfiddle. – Navi Feb 14 '12 at 11:33

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.