Tagged Questions
0
votes
1answer
484 views
dynamically create object tags in javascript
I am wondering why the following code does not create two of my activex object. When the object tag is directly in the HTML it works fine, but for the life of me I can't dynamically create the object ...
0
votes
1answer
290 views
IE attachEvent on object tag causes memory corruption
I've an ActiveX Control within an embedded IE7/8 HTML page that has the following event [id(1)] HRESULT MessageReceived([in] BSTR id, [in] BSTR json). On Windows the event is registered with ...
0
votes
3answers
968 views
Does Internet Explorer remove the <object> element from DOM?
I have markup in my page that includes the tag:
<body>
<object codebase="blah" codetype="text/blah">
<param name="name" value="value"/>
<div>Some Markup</div>
...
0
votes
4answers
10k views
How can I dynamically add an <object> tag with JavaScript in IE?
I have to add either an embed tag for Firefox or an object tag for Internet Explorer with JavaScript to address the appropriate ActiveX / Plugin depending on the browser. The plugin could be missing ...