Include hosting and stripe

This commit is contained in:
M.Ravi 2023-11-22 15:42:05 +05:30
commit d774d38554
432 changed files with 55919 additions and 13 deletions

View file

@ -0,0 +1,18 @@
$(document).ready(function() {
$('.btn-pdf').click(function(e) {
e.preventDefault();
var $target = $($(this).attr('data-target')) || $('body');
var fileName = $target.attr('id') + '.pdf';
html2pdf($target[0], {
filename: fileName,
html2canvas: {
scale: 2
}
});
});
$('.btn-print').click(function(e) {
e.preventDefault();
console.log('a');
window.print();
});
});