javascript - Java script associated with the PDF document not working in a web page -
i embedding pdf in web page using java script.
var addembededpdf = function() { var pdfcontainer = document.getelementbyid('pdfcontainer'); pdfcontainer.innerhtml = '<embed src="' + $scope.pdfpath + '" scrolling="no" frameborder="0" width="100%" height="600px"></embed>'; }; two things here.
- adding pdf through java script
- the pdf being added has java script associated document
the generated pdf has end java script works when document opened through acrobat/adobe reader.
when pdf in web page java script associated pdf not working.
i think
is there way change java script associated pdf works fine.
i think javascript cannot run directly pdf via web browser, must use pdf reader support javascript
Comments
Post a Comment