I achieve datatable export in pdf and now i try to achieve whatever in this div also in that same file means both datatable and container data in 1 pdf file for this i do this
<div id="container">
</div>
i achieve export pdf with the following scripts links
<script type="text/javascript" src="Scripts/tableExport.js"></script>
<script type="text/javascript" src="Scripts/jquery.base64.js"></script>
<script type="text/javascript" src="Scripts/html2canvas.js"></script>
<script type="text/javascript" src="jspdf/libs/sprintf.js"></script>
<script type="text/javascript" src="jspdf/jspdf.js"></script>
<script type="text/javascript" src="jspdf/libs/base64.js"></script>
<script type="text/javascript">
//$(function sumdata() {
$('#a5').click(function () {
$('#tabledata').tableExport({ type: 'excel', escape: 'false' });
$('#container').tableExport({ type: 'excel', escape: 'false' });
});
//});
</script>
<a href="#" id="a5" style="background-color: #3399FF; color: #FFFFFF; font-weight: bold; font-size: medium">PDF3</a>
but when i click on PDF3 nothing happen
any solution