optimus
optimus

Reputation: 856

Print web pages to pdf via JavaScript

I have a webpage in pure HTML and CSS. This page is on localhost. I want to convert this page into pdf. What might be the best approach to convert it into pdf preserving all CSS styles. This may be a duplicate of this, but it would be more convenient to find a solution in JavaScript

Upvotes: 1

Views: 972

Answers (1)

Nash
Nash

Reputation: 26

there are HTML to PDF converters available for free, and you could automatically start a download with that. An example of this would be jsPDF, a free library for converting HTML to a PDF with Javascript

Upvotes: 1

Related Questions