Tagged Questions
1
vote
1answer
60 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
3answers
985 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>
...