Generating PDF files with JavaScript
December 5, 2021
Generate PDF with JavaScript // Default export is a5 paper, portrait, using milimeters for units var doc = new jsPDF() doc.text(‘Hello world!’, 10, 10) doc.save(‘a5.pdf’)… Read More →
December 5, 2021
Generate PDF with JavaScript // Default export is a5 paper, portrait, using milimeters for units var doc = new jsPDF() doc.text(‘Hello world!’, 10, 10) doc.save(‘a5.pdf’)… Read More →
October 5, 2021
Submit AJAX Forms with JQuery // this is the id of the form $(“#idForm”).submit(function(e) { e.preventDefault(); // avoid to execute the actual submit of the… Read More →
January 20, 2020
In modern web development, creating interactive and responsive user interfaces is a fundamental requirement. JavaScript event handling is the backbone of this interactivity. While older… Read More →
January 2, 2020
In the dynamic world of web development, providing timely feedback to users enhances engagement and improves usability. Notifications serve as an effective way to alert… Read More →
December 25, 2019
The evolution of web development has transitioned from static, fixed-width layouts to fluid, responsive environments that must adapt to an incredible variety of screen sizes…. Read More →
December 9, 2019
Long-form web pages have become the norm across blogs, documentation sites, portfolios, and e-commerce platforms. As users scroll deeper into content, navigating back to the… Read More →
Adding a class in JavaScript without replacing existing classes is one of the most common DOM manipulation tasks developers face when building interactive interfaces. Whether… Read More →