jsPDF and cordova Cant view the pdf file
问题 I'm trying to generate a PDF invoice for my app , I can get to the line 'console.log ("write success");' but I just cannot locate the file. Please help!!! How can I save it to a folder in my mobile??? console.log("generating pdf..."); var doc = new jsPDF(); doc.text(20, 20, 'HELLO!'); doc.setFont("courier"); doc.setFontType("normal"); doc.text(20, 30, 'This is a PDF document generated using JSPDF.'); doc.text(20, 50, 'YES, Inside of PhoneGap!'); var pdfOutput = doc.output(); console.log(