My code has the following declaration:
<object id="myObject" name="myObject"
data="data:application/x-oleobject;base64,ab9qcMENN0WE41oij7hs8764yu+YEwAA2BMABB=="
classid="clsid:83A04F76-85DF-4f36-A94E-BA3465007CDA" viewastext
codebase="someAssembly.dll#version=UNKNOWN">
</object>
I want to instantiate the same object, but inside the .js file, and therefore I would like to build this object without using a tag (if possible):
var myObject = new ActiveXObject( *Something goes here* );
source
share