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?
|
|
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.) |
||||||||
|
|
|
It should be possible to do this like swfobject detects flash version: |
||||
|
|
|
var p = document.getElementById('Pdf1'); //p.GetVersions() if(p.GetVersions().indexOf("7.0") != -1) alert("Acrobat 7 Found") |
||
|
|
|
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 |
||
|
|
