Best Luggage for Budget Airlines Finder

Best Luggage for Budget Airlines Finder

Find carry-on luggage that fits your airline's rules and avoid fees.

Disclaimer: Airline policies can change. Always double-check the airline's official website for the most current size and weight restrictions before flying.

${bag.l}" x ${bag.w}" x ${bag.h}" | ${bag.weight} lbs

${bag.feature}

`; luggageList.appendChild(card); }); resultsContainer.classList.remove('hidden'); } function generatePdf() { const { jsPDF } = jspdf; const pdf = new jsPDF(); const pdfContent = document.getElementById('results-pdf-content'); html2canvas(pdfContent, { scale: 2 }).then(canvas => { const imgData = canvas.toDataURL('image/png'); const { width, height } = pdf.internal.pageSize; const imgHeight = canvas.height * width / canvas.width; pdf.setFontSize(22); pdf.text("Budget Airline Luggage Guide", width / 2, 20, { align: 'center' }); pdf.addImage(imgData, 'PNG', 15, 30, width - 30, imgHeight * ((width - 30) / width)); pdf.save('luggage-guide.pdf'); }); } airlineSelect.addEventListener('change', findLuggage); document.getElementById('pdf-download-btn').addEventListener('click', generatePdf); });
Scroll to Top