Tutorials
Convert YAML to CSV File Using Python 3 and pyyaml
In this article, I’ll give you the complete source code of yaml to csv python script. It uses Python’s pyyaml module to convert YAML to CSV file. app.py
Wordle Clone JavaScript – Full Source Code
In this tutorial, you will learn how to create a JavaScript Wordle clone. I’ll also provide the full wordle source code in this article. Download Files Containing List of Words Before getting started, download these JavaScript files and place them in the root folder of your project. Basically, both of these files contain a JavaScript … Read more
Build File Downloader From URL Using JavaScript HTML5 CSS3
Free JavaScript file download from URL script. index.html
Create Digital Alarm Clock With Ringtone & Custom Icons in JavaScript HTML5 CSS3
index.html Download JavaScript Alarm Clock Download Source Code
jsPDF Html2Canvas Tutorial: Convert Div With Attribute Hidden to PDF and Print it in Browser Using HTML5 and JavaScript
To hide an HTML tag; add this attribute tag data-html2canvas-ignore=”true” instead of the hidden. So with Mario Alexandro Santini’s suggestion in the comments, I was able to solve the problem. I used jquery to unhide the div in my makePdf() function then hide it again after jsPDF and html2canvas had done their “magic”: You could … Read more
Angular 13 jsPDF Html2Canvas Project: Export Multiple HTML Div Content in Different PDF Pages Using TypeScript
On the Angular 2 framework (now Angular 13), you can use the step-by-step logic mentioned below: On click execute generateAllPdf() function gather all 6 id‘s from my HTML collection iterate through each id and call the html2canvas function, as html2canvas runs in the background to process images, I’m using await on function, after the html2canvas … Read more