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.