I use an IFrame to view a Pdf document when a link within that IFrame is clicked. However, on machines without the reader, the link will prompt for download. Is there a way, that the same link can prompt the user to download a reader when it detects no reader instead? I thought I have seen this somewhere. Thanks!

link|improve this question

71% accept rate
2  
You might also have to take into account the fact that many users (myself included) disable browser integration with their PDF reader. – Bryan Aug 12 '09 at 6:35
1  
In MsIE 7, how would one choose to disable the browser integration with a PDF reader? – Irawan Soetomo Aug 12 '09 at 7:13
3  
+1 for disabling annoying in-browser pdf readers! – Boris Callens Aug 12 '09 at 9:57
If you want to disable it, assuming you are using adobe reader, it's in the adobe reader preferences. Note that some browsers also offer the ability to disable this functionality, not sure if IE offers this or not though. – Bryan Aug 12 '09 at 13:56
Please don't do this. Let the user decide what to open PDFs in. – Brad Oct 26 '10 at 15:25
feedback

4 Answers

up vote 3 down vote accepted
+100

This works for me in IE:

<script>
var p;
try {
p = new ActiveXObject('AcroExch.Document');
}
catch (e) {
// active x object could not be created
document.write('doesnt look like the PDF plugin is installed...');
}
if (p) {
    document.write('does look like the pdf plugin is installed!');
}
</script>

Found it here. ..but modified to remove the "endif"

link|improve this answer
However crude with much activeX flaggings with MsIE, this seemed to be the working one. – Irawan Soetomo Aug 18 '09 at 12:19
is there any cross browser jquery detection? – Jitendra Vyas Dec 14 '09 at 10:55
feedback

Here are a few scripts that help detect the presence of Acrobat.

link|improve this answer
This appear as if it is the most comprehensive approach, however, I am still struggling to make it work. Any spoon feeding would be most appreciated. I am interested in the dithered.chadlindstrom.ca/javascript/acrobat_redirect/… – Irawan Soetomo Aug 18 '09 at 12:17
Could you provide some information on how this works? I feel like just providing a link without explanation is better than nothing, but still leaves something to be desired. – nont Aug 18 '09 at 16:24
I've implemented the scripts on a couple of sites with no problems. And I do not see the need to replicate information from the site here when all relevant details are available on the site. – Jim Aug 19 '09 at 8:56
feedback

I know this question had been answered already, but I recently had to build a function that detects PDF plug-in presence across different browsers. This is what I got. Hopefully if helps.

function hasPdfPlugin() {   
//detect in mimeTypes array
if (navigator.mimeTypes != null && navigator.mimeTypes.length > 0) {        
    for (i = 0; i < navigator.mimeTypes.length; i++) {
        var mtype = navigator.mimeTypes[i];
        if(mtype.type == "application/pdf" && mtype.enabledPlugin)
            return true;
    }
}

//detect in plugins array
if (navigator.plugins != null && navigator.plugins.length > 0) {
    for (i = 0; i < navigator.plugins.length; i++) {
        var plugin = navigator.plugins[i];
        if (plugin.name.indexOf("Adobe Acrobat") > -1
                || plugin.name.indexOf("Adobe Reader") > -1) {
            return true;
        }

    }
} 
// detect IE plugin
if (window.ActiveXObject) {
    // check for presence of newer object       
    try {
        var oAcro7 = new ActiveXObject('AcroPDF.PDF.1');
        if (oAcro7) {
            return true;
        }
    } catch (e) {
    }

    // iterate through version and attempt to create object 
    for (x = 1; x < 10; x++) {
        try {
            var oAcro = eval("new ActiveXObject('PDF.PdfCtrl." + x + "');");
            if (oAcro) {
                return true;
            }
        } catch (e) {
        }
    }

    // check if you can create a generic acrobat document
    try {
        var p = new ActiveXObject('AcroExch.Document');
        if (p) {
            return true;
        }
    } catch (e) {
    }

}

// Can't detect in all other cases
return false;
}
link|improve this answer
Excellent, worked flawlessly on IE8 and Firefox 7. – Sebastien Lachance Oct 18 '11 at 12:11
feedback

In JavaScript, can you do something like:

var adobePdfObject = new ActiveXObject("theAdobePdfCOMObject");

and then either catch a failure error or the return value of adobePdfObject?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.