function fload(){
f = document.createElement('iframe');
f.setAttribute('id','iframe');
f.setAttribute('src','http://www.wtsp.com/news/article/199268/8/man-falls-behind-on-payments-mortgage-company-has-home-trashed');
f.setAttribute('frameborder','0');
document.getElementById('content').appendChild(f);
}
I'm trying to load an iframe after everything else loads. Above is the code. In IE9, the console shows "SCRIPT65535: Unexpected call to method or property access." pointing to the line with appendChild().
Also, is it possible to load the iframe asynchronously?
fto that function withvar. Also, are you certain an element with thecontentid exists at the time this code is ran? – alex Jul 7 '11 at 23:55