Bucket List Generator

Bucket List Generator

Select your interests to curate a personalized list of life goals.

What inspires you?

Select at least one category to generate your list.

Your bucket list is empty. Add a custom item or go back to generate a new list.

'; downloadPdfBtn.disabled = true; } } }); // PDF Download downloadPdfBtn.addEventListener('click', () => { if (typeof jspdf === 'undefined') return; const { jsPDF } = jspdf; const doc = new jsPDF(); doc.setFont("helvetica", "bold"); doc.setFontSize(22); doc.text("My Bucket List", 105, 20, { align: 'center' }); doc.setFont("helvetica", "normal"); doc.setFontSize(12); const items = Array.from(listOutput.querySelectorAll('.list-item span')).map(span => span.textContent); let y = 35; items.forEach(item => { // Draw a checkbox-like square doc.rect(15, y - 4, 5, 5); doc.text(item, 25, y); y += 10; if (y > 280) { // Add new page if content overflows doc.addPage(); y = 20; } }); doc.save('My_Bucket_List.pdf'); }); // --- INITIALIZATION --- renderCategories(); updateTabUI(); });
Scroll to Top