just wondering how I can get all the browser plugins object?
I know about navigator.plugins method, But need an object with only the plugin name.
Any Ideas?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you are using jQuery and a browser that supports
navigator.plugins(doesn’t seem to include IE), then the following code will return you a Javascript array of the names of plugins present:EDIT: For an IE solution, see this helpful page with some handy functions you could fairly easily use if required. Note that it doesn’t show all plugins, but it does show how to determine if some of the common plugins (Flash, Java, Adobe Reader, etc) are present.