Цитата(paralmix @ 19.6.2008, 09:59) | Цитата(solenko @ 4.6.2008, 01:55) | Есть такой массив navigator.plugins[] -- в нем все что вам нужно |
navigator.plugins[] - не поддериживаеться IE, хотелось бы межбраузерное решение |
Может кому то пригодаться:
Код | function IsAdobeReader() { if (window.ActiveXObject)//IE { try { // AcroPDF.PDF is used by version 7 and later if (new ActiveXObject('AcroPDF.PDF')) return true; } catch(e) {} try { // PDF.PdfCtrl is used by version 6 and earlier if (new ActiveXObject('PDF.PdfCtrl')) return true; } catch(e) {} } else // NS, FF, Opera3, IE5+ Mac (support plugin array) if ((navigator.plugins != null) && (navigator.plugins.length > 0)) { for (var i = 0; i < navigator.plugins.length; i++ ) if (navigator.plugins[i].name.indexOf("Adobe Acrobat") > -1) return true; } return false; }
|
|