Tutorials

jsPDF .fromHTML() Convert HTML Div Paragraphs to PDF in JavaScript

In this tutorial, I will teach you how to convert HTML5 tags like heading, div, and paragraphs to PDF using JavaScript. To make the process easier, I’ll use jsPDF .fromHTML() function for converting HTML5 to PDF file.

The complete source code of this project including how to use jsPDF .fromHTML() is given in this tutorial.

HTML5 to PDF using jsPDF .fromHTML()

index.html

<!DOCTYPE html>
<html>
    <head>
        <title> Reading </title>
        <meta charset="utf-8" />
    </head>
    <body id="target">
        <div id="page-content">
            <h1 style="color: #fbceb5; background-color: 2d334a;
            background: linear-gradient(to left, #6e5773 , #d8b5b5);" >
                The Magic Of Reading </h1>

            <p> 
                Reading is probably one of the most beneficial and feasible activities that a man can do.
                It is through reading that a person is going to be able to discover new ideas, concepts, places, and people.
                Some people even describe reading as a journey that starts as the opening of a page, and finishes as the last page is turned.
                The reason why reading is so important is because reading is relaxing to our mind and soul; it is a way for children to reach out to the world,
                and it improves our thinking process.
            </p>
            
            <br/>
        </div>

        <div style="text-align: center;">
        <button id="click-button" style="background-color:rosybrown; border-color: rosybrown; height: 35px;"> Convert to PDF </button>
        </div>
    </body>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <script src="index.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.5.3/jspdf.min.js"></script>
    <script>
    $(document).ready(function(){

        var specialElementHandlers = {
            "#editor": function(element, rendrer){
                return true;
            }
        };

        $('#click-button').click(function(){

            var myDocument = new jsPDF();

            myDocument.fromHTML($("#target").html(), 15, 15, {
                "width":170,
                "elementHandlers": specialElementHandlers
            });

            myDocument.save("File.pdf");
        });

    });
    </script>
</html>
Furqan

Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.

Recent Posts

Obsidian vs Notion (2026): I tested both for 6 months

If you have been searching for the right note-taking or knowledge management app, you have…

May 31, 2026

AnyType Alternatives: 10 Best Tools for Knowledge Management in 2026

Looking for AnyType alternatives? You're not alone. AnyType has gained popularity as a privacy-focused, local-first…

May 31, 2026

Notion Alternatives – Best Note-taking & Wiki Tools

Notion is a popular all-in-one workspace, but many users seek alternatives for different needs (free…

May 31, 2026

Best Logseq Alternatives in 2026: Find Your Perfect Knowledge Management Tool

Logseq is a beloved tool in the personal knowledge management (PKM) community. It's free, open-source,…

May 30, 2026

Webshare Alternatives: 8 Best Proxy Providers to Use in 2026

Looking for a Webshare alternative? You're not alone. Webshare is a popular proxy service with…

May 30, 2026

Docker Alternatives in 2026: The Complete Guide to Container Tools

Docker changed software development forever. It made containers accessible, gave developers a simple workflow, and…

May 30, 2026