Hi I am developing print functionality in angularjs. I followed this. I have one button and clicking on that i want to take print. For example i want to print below content.
<div id="printThis" >
This should BE printed!
<div class="modifyMe">old</div>
</div>
The problem I'm facing is I do not want to display printThis in web page. Practically I am having page with i am binding values through scope variable. If i hide that div using bg-show or any other ways i am getting blank in print preview! So may i get some help to fix this? I am planning to implement the way it is implemented here. Any help would be appreciated. Thank you.