Tagged Questions
1
vote
1answer
43 views
Dynamically injecting an <object> tag causes white flash
I'm trying to dynamically insert some HTML/JS/CSS on command. (holding
off this code for page loading speed). I found a neat way
of doing this, inserting a HTML5 tag pointing at the html-
file ...
0
votes
1answer
48 views
How can I control the layout of an embedded <OBJECT>?
Page1.html has
<html><head>
</head>
<body>
[<span class="foo">span unchanged</span>]
<script type="text/javascript">
var a = ...
0
votes
1answer
485 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
150 views
Is it possible to change the file path of the video using javascript?
I have an object tag in a HTML file:
<object classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95">
<param name="FileName" value="../ABC/WildLife.wmv" id="mediaPlayerFile">
...
0
votes
1answer
605 views
What does the JS function 'postMessage()' do when called on an html object tag?
I was recently searching for a way to call the print function on a PDF I was displaying in adobe air. I solved this problem with a little help from this fellow, and by calling postMessage on my PDF ...
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 ...