vote up 1 vote down star
1

Title says it all. I know this can be done in IE by creating an ActiveX object, but how do I do it in FF. The navigator.plugins['Adobe Acrobat'] object lets me know if it's installed or not, but it doesn't contain the version number. Any ideas?

flag

4 Answers

vote up 5 vote down

navigator.plugins[n].name where n is the index of the Acrobat plugin is supposed have the version number in it. Unfortunately, starting with Adobe Reader 8, they changed the name to "Adobe PDF Plug-In for Firefox and Netscape", with no version information. So, if this is the name you've detected at least Reader 8, but can't tell versions 8 from 9.

Also, make sure you take into account that Macs don't need Acrobat Reader to render PDF files. (I booted my Windows partition just to test this.)

link|flag
Great answer. Is this available on IE as well or is a different method needed? – Casey Watson Oct 9 '08 at 16:23
Good advice about the Macs, but this solution has the same problem as the SWFObject one, the description for Adobe Acrobat doesn't include a version number. – Snocrash Oct 9 '08 at 18:39
Regarding the IE comment, this description method can be used for other plugins on IE, but a more reliable way is to create an ActiveXObject as described here: builtfromsource.com/tag/safari – Snocrash Oct 9 '08 at 18:45
Sorry Snocrash - I didn't realize that Adobe stopped putting version numbers in there with v8. I updated the answer with more info. – Allen Pike Oct 10 '08 at 7:06
vote up 1 vote down

It should be possible to do this like swfobject detects flash version:

SWFObject source code

link|flag
I would have said it if you hadn't - SWFObject is making the lives of thousands of web developers easier, one include at a time. – matt lohkamp Oct 9 '08 at 9:40
Good advice, I hadn't thought to look there, but unfortunately it only works because the navigator.plugins['Shockwave Flash'].description actually contains the version number. Adobe Acrobat doesn't do this, the only thing in their description is "Adobe PDF Plug-In for Firefox and Netscape". – Snocrash Oct 9 '08 at 18:36
vote up 0 vote down

var p = document.getElementById('Pdf1'); //p.GetVersions() if(p.GetVersions().indexOf("7.0") != -1) alert("Acrobat 7 Found")

link|flag
What is the element with ID 'Pdf1' supposed to be? Please explain. – musicfreak May 11 at 3:26
vote up 0 vote down

Is there any workaround for Acrobat Reader version 8 and above detection? I need to implement a simple javascript that detect browser brands and version at the same time check acrobat readers version..

thanks -rhodmie web developer

link|flag

Your Answer

Get an OpenID
or

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