C
Christopher Nelson
Christopher Nelson said the following on 3/1/2007 9:30 AM:I've got:var e = document.getElementById(id);
e.innerHTML = '<br>'+req.responseText;var h = document.getElementsByTagName('head')[0];var scripts = e.getElementsByTagName('script');
alert(scripts.length+' scripts found for '+id);
for (var i = 0; i < scripts.length; ++i) {
var s = scripts;
if (s.innerHTML) {
var x = document.createElement('script');
x.innerHTML = s.innerHTML;
x.text = s.innerHTML;
Thanks. IE7 gets farther now. It complains about expecting an object
on line 500,000-something and then opens the debugger with most of the
first 10 lines or so of index.html highlighted. :-(