Here i am trying to make pdf, when user click button i need to take all div content into a table(no need images) and download as a PDF. click here for my example . in the example am using table. actually i want to make table in pdf.
JS
var doc = new jsPDF();
var specialElementHandlers = {
'#editor': function (element, renderer) {
return true;
}
};
$('#cmd').click(function () {
doc.fromHTML($('#tablepdf').html(), 15, 15, {
'width': 170,
'elementHandlers': specialElementHandlers
});
doc.save('sample-file.pdf');
});