Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <div id='printedArea'>
  2. <h1>Hello world</h1>
  3. </div>
  4. <input type='button' onclick='print()' value='print me'></input>
  5. <script>
  6. function print() {
  7. jsreport.download('report.pdf', {
  8. template: {
  9. content: document.getElementById('printedArea').innerHTML,
  10. engine: 'none',
  11. recipe: 'phantom-pdf'
  12. }});
  13. }
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement