I have web page with containing data I want that when I click generate pdf button it should create pdf of that page. And Save Locally .
I have searched alot but I am getting script to only create pdf by entering data is there any other way
Below is the method which I tried but it is not suitable I want to create whole page into pdf file.
jspdf.com
I also tried another code but it also does not create the file
<script>
function generatePDF(){}
var conv = new ActiveXObject("pdfServMachine.converter");
conv.convert("http://www.google.com", "c:\\google.pdf", false);
WScript.Echo("finished conversion");
}
</script>
<body onload="generatePDF()">
</body>
</html>