What I am looking for is to use the property of my JSPDF
doc.text($("#PatientName").text(), 14, 17);
which gets the name of the person and put it in the name of the file to download
let docName = "report_" + timespan.getTime() + ".pdf";
instead of putting timespan.getTime() I want to put the name of the patient obtained from
doc.text($("#PatientName").text(), 14, 17);
#PatientName it´s a dynamic name .. i tried to put in a var like this:
var name = doc.text($("#PatientName").text(), 14, 17);
But i get this list of options but no one gets the value of the text or the variable
{internal: {…}, private: {…}, advancedAPI: ƒ, compatAPI: ƒ, isAdvancedAPI: ƒ, …}