in Education by
If my post duplicated, please give me references. because i failed finding post that appropriate from my problem. I have simple form


So, here I have make simple code to generate my form to pdf : function printInput() { var doc = new jsPDF(); doc.fromHTML($("#input").get(0), 10, 10, {'width': 180}); doc.output('dataurlnewwindow'); } But, value from input and select not show. how to make value from them showing in pdf ? JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
Add div around date and Name


In script function printInput() { document.getElementById("NameHide").innerHTML="Name"+document.getElementById("name").value; document.getElementById("DateHide").innerHTML="Date"+document.getElementById("date").value; var doc = new jsPDF(); doc.fromHTML($("#input").get(0), 10, 10, {'width': 180}); doc.output('dataurlnewwindow'); document.getElementById("NameHide").innerHTML="Name"; document.getElementById("DateHide").innerHTML="Date"; } JSpdf is not fully developed yet. So we need to write our own logic to print from user input. This logic is appending value to html content. then renders html and again remove previous append.

Related questions

0 votes
    I wanted to find a way to extract from the url the classes to be added to the body. I made some ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    I wanted to find a way to extract from the url the classes to be added to the body. I made some ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    I have some divs like: next and the script in another page link.htm: Slide I want to load link. ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 28, 2022 in Education by JackTerrance
0 votes
    In the HTML of a web app, there is the following code What is actually shown on the page is a string displaying ... . Any help? Thanks. Select the correct answer from above options...
asked Feb 8, 2022 in Education by JackTerrance
0 votes
    I am pulling information from a Page note from the Facebook API. In the output I get an image URL ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 12, 2022 in Education by JackTerrance
0 votes
    I am pulling information from a Page note from the Facebook API. In the output I get an image URL ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 11, 2022 in Education by JackTerrance
0 votes
    Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 11, 2022 in Education by JackTerrance
0 votes
    I wrote the following code to Calculate determinant of a nXn matrix. I could successfully check if the ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jan 15, 2022 in Education by JackTerrance
0 votes
    I'm learning oop in python after learning it in Java. It happens that i'm trying to create an array from my class ... .name = name person1 = Person() person1.set_name("John") #...
asked Apr 2, 2022 in Education by JackTerrance
0 votes
    How can we take input text from user in HTML page? (a) input tag (b) inoutBufferedReader tag (c) meta ... & Servlet of Java Select the correct answer from above options...
asked Feb 22, 2022 in Education by JackTerrance
0 votes
    How can we take input text from user in HTML page? (a) input tag (b) inoutBufferedReader tag (c) ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Oct 24, 2021 in Education by JackTerrance
0 votes
    We have a customer requesting data in XML format. Normally this is not required as we usually just hand ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 20, 2022 in Education by JackTerrance
0 votes
    We have a customer requesting data in XML format. Normally this is not required as we usually just hand ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 19, 2022 in Education by JackTerrance
0 votes
    The optical computers are increasingly accessing our real-world data to build products that show commercial value ... 50% Select the correct answer from above options...
asked Dec 5, 2021 in Education by JackTerrance
...