Page1.html has

<html><head>
</head>
<body>
[<span class="foo">span unchanged</span>]
<script type="text/javascript">
    var a = document.getElementsByClassName('foo').item(0);
    var synth = '<object data="http://localhost/~bruceaxtens/Page2.html">Page2.html not found</object>';
    a.innerHTML = synth;
</script>
</body>
</html>

So there are square brackets which should enclose the text which will be handed back by Page2.html

Page2.html contains

<html>
<head></head>
<body>
<script type="text/javascript">
document.write("Hello World");
</script>
</body>
</html>

What I get however is the "Hello World" at the top of the page and the brackets a couple of inches further down.

Is there any way of keeping the two together?

link|improve this question

in your first example: the script tag belongs in either the <body> or <head> element. – zzzzBov Nov 9 '10 at 5:10
@zzzzBov: Does it really make that much difference? – boost Nov 9 '10 at 5:18
If you code to the standard, you wont have to wonder if the error is yours or if it's a browser compatibility issue. It also means you wont have to worry about your code breaking in the future. – zzzzBov Nov 9 '10 at 5:22
@zzzzBov: Fair comment. Moved. – boost Nov 9 '10 at 5:30
@zzzzBov: Makes no difference, however, in this context. – boost Nov 9 '10 at 6:11
feedback

1 Answer

up vote 0 down vote accepted

I answer myself thus:

Instead of returning HTML and have issues with OBJECT handling in different browsers, hand back Javascript and execute it in the context of the client's DOM.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.