I am looking for a JS Plugin that let me to show 1. PDF Document in Web browser 2. (Most Important)Text in that PDF must not be copied by other
I have tried using PDFObject that allowed me to embed PDF Document into my HTML document here is a code
 <div id="pdf" style="height: 500px;">
<script>
    var options = {
    height: "500px",
    pdfOpenParams: {
        view: 'FitBV,left',
        pagemode: 'bookmarks',
        search: '',
        allowcopy:false //doesnot exist
    }
};
    PDFObject.embed("sample-3pp.pdf",document.getElementById("pdf"),options)
</script>
in this 'allowcopy' parameter doesnot exist in acrobat sdk (parameters for opening documentation) i am looking for such kind of a usecase/parameter that puts to be false and someone cannot copy my content.