How to detect some Activex in Javascript ?
Posted
by Rebol Tutorial
on Stack Overflow
See other posts from Stack Overflow
or by Rebol Tutorial
Published on 2010-05-26T05:36:20Z
Indexed on
2010/05/26
5:41 UTC
Read the original article
Hit count: 164
JavaScript
I have an activex plugin here: http://reboltutorial.com/plugins/logo-badge/
I tried by adapting the script http://forums.devarticles.com/javascript-development-22/detecting-activex-objects-installed-in-ie-11041.html to
<script>
//if RPluginIE is not installed
if( !document.RPluginIE){
document.loction.href = "Notfound.html"
}
</script>
but it doesn't work.
How to detect for any activex ?
© Stack Overflow or respective owner