How to check if ActiveX is Enabled in IE using JavaScript
This way
<script type="text/javascript"> if (typeof (window.ActiveXObject) == "undefined") { alert("ActiveX not supported"); } else { alert("ActiveX supported"); } </script>
Demo
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.