How do I detect if ActiveX is enabled in the browser of client?
I tried following code, but it\'s not working in Firefox.
window.ActiveXObject not wo
Below code should work, It is working on IE6 & FF 3.6.12 atleast.
if(typeof(window.ActiveXObject)=="undefined"){ alert("ActiveX Object not supported"); }else { alert("ActiveX Object supported"); }