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 working on a project where I want to print a bill.It is running successfully but now I want to print particular content on a new page.

following is print screen image where I want to display terms and condition always on new page,at present it is displayed on same page depend upon bill content.I am new to new this any help will be appreciated.Thanks in advance

sdd

EDIT :-

<script type="text/javascript">
            $(document).ready(function (){  

                $('.printpreview').click(function()
                {
                    $('.printpreview').hide()
                    window.print();

                });


            });
    </script>
share|improve this question
2  
You need a print stylesheet. – undefined Oct 2 '12 at 13:18
sorry I didn't get you ? – Rakesh Shetty Oct 2 '12 at 13:19

2 Answers

up vote 1 down vote accepted

make one class into stylesheet.

.printbreak {
page-break-before: always;
}

put your terms & condition content into div and give this class to this div

<div class="printbreak">
//terms & condition
</div>

If you want more information, then check http://coding.smashingmagazine.com/2011/11/24/how-to-set-up-a-print-style-sheet/

share|improve this answer
Thanks you @GBD it works!! I was trying page-break-after now I change it to page-break-before and it run successfully.Thanks – Rakesh Shetty Oct 2 '12 at 13:34

don't know how widely supported it is

@media print { table {page-break-after:always}}

or in javascript

*object*.style.pageBreakAfter="always"

more information can be found on sitepoint's css page!

share|improve this answer
css style, in case that isn't evident – Dave Oct 2 '12 at 13:21
sorry I am new to this please can you explain me with my example ? – Rakesh Shetty Oct 2 '12 at 13:21
It will be very helpful if you provide me some code.How this can be achieve in my code ? – Rakesh Shetty Oct 2 '12 at 13:24
you would have to show the code where you create the page for me to provide change recommendations – Dave Oct 2 '12 at 13:28

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.