JSFiddle - React, Tailwind, and code Playground

by lemon kazi

HTML

<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.2/jspdf.min.js"></script>
<div id="printableArea">
			
	 
	        <table>
				<thead>
					<tr><th>ক্রমিক নং</th>
					<th class="psub">প্রকল্পের ধরন</th>
					<th class="punit">সংখ্যা</th>
                    <th class="punit">
                    	দৈর্ঘ্য                    	

                    </th>
					<!--<th>দৈর্ঘ্য</th>
					<th>প্রস্থ</th>
					<th>উচ্চতা/গভীরতা </th>
					<th>ক্ষেত্রফল</th>
					<th>অন্যান্য</th>		-->
					<th class="ptotal">বরাদ্দের পরিমাণ</th>
					<th class="ptotal">ব্যয়ের পরিমাণ</th>
					<th class="pyear">অগ্রগতীর হার %</th>	
				
				</tr></thead>
								<tbody><tr>
					<td>1</td>
					<td class="pdes">
	                                     রাস্তা নির্মাণ	                                                        </td>
					<td class="psub">255</td>
                    <td class="punit">14166525</td>
					<!--<td></td>
					<td></td>
					<td></td>
					<td></td>		
					<td></td> -->
					<td class="ptotal">2357.01</td>
					<td class="ptotal">2357.01</td>
					<td class="pyear">						                100.00

					</td>
					
				</tr>
								<tr>
					<td>2</td>
					<td class="pdes">
	                                     রাস্তা পুনর্নিমাণ	                                                        </td>
					<td class="psub">2933</td>
                    <td class="punit">162942815</td>
					<!--<td></td>
					<td></td>
					<td></td>
					<td></td>		
					<td></td> -->
					<td class="ptotal">25163.47</td>
					<td class="ptotal">25035.20</td>
					<td class="pyear">						                99.49

					</td>
					
				</tr>
								<tr>
					<td>3</td>
					<td class="pdes">
	                                     রাস্তা মেরামত	                                                       ...

JavaScript

function demoFromHTML() {
    var pdf = new jsPDF('p', 'pt', 'letter');
    // source can be HTML-formatted string, or a reference
    // to an actual DOM element from which the text will be scraped.
    source = $('#printableArea')[0];

    // we support special element handlers. Register them with jQuery-style 
    // ID selector for either ID or node name. ("#iAmID", "div", "span" etc.)
    // There is no support for any other type of selectors 
    // (class, of compound) at this time.
    specialElementHandlers = {
        // element with id of "bypass" - jQuery style selector
        '#bypassme': function (element, renderer) {
            // true = "handled elsewhere, bypass text extraction"
            return true
        }
    };
    margins = {
        top: 80,
        bottom: 60,
        left: 40,
        width: 522
    };
    // all coords and widths are in jsPDF instance's declared units
    // 'inches' in this case
    pdf.fromHTML(
    source, // HTML string or DOM elem ref.
    margins.left, // x coord
    margins.top, { // y coord
        'width': margins.width, // max width of content on PDF
        'elementHandlers': specialElementHandlers
    },

    function (dispose) {
        // dispose: object with X, Y of the last line add to the PDF 
        //          this allow the insertion of new lines after html
        pdf.save('Test.pdf');
    }, margins);
}