FAQ
FAQ

What is the simplest way to add PDF download to my website?

WebSave is the simplest PDF generator. Add just two lines of code:

<script src="https://edge.pdfcrowd.com/websave/1.3.0/websave.min.js"></script>
<button class="pdfcrowd-websave" data-key="demo">Save as PDF</button>

That's it! Your visitors can now download any page as PDF with one click.

Notes:

  • For production use, replace demo with your WebSave key.
  • The PDF is highly customizable with many options.

Converting dynamic or password-protected pages? Use content mode to capture exactly what the user sees:

<script src="https://edge.pdfcrowd.com/websave/1.3.0/websave.min.js"></script>
<script>
  const myConfig = { conversionMode: 'content' };
</script>
<button class="pdfcrowd-websave" data-key="demo" data-config="myConfig">Save as PDF</button>

For reactive applications, see the integration guide.