I have this js code :
var doc = new jsPDF();
$(\'#pdf_new\').click(function(){
var html=$(\".wrap_all\").html();
doc.fromHTML(html,200,200, {
When using 'fromHTML' to take text from a HTML from for the PDF you are creating using JSPDF, you should have an elementHandler function to render out the unwanted < div >.
Try following the same patern as shown in the example at JSPDF@GitHub.
your end code should look like this:
var doc = new jsPDF();
var specialElementHandlers = {
'DIV to be rendered out': function(element, renderer){
return true;
}
};
$('#pdf_new').click(function(){
var html=$(".wrap_all").html();
doc.fromHTML(html,200,200, {
'width': 500,
'elementHandlers': specialElementHandlers
});
doc.save("Test.pdf");
});