I have a function that create an iframe
in the page:
var wrapper = outer_doc.find('#wrapper');
create('iframe_sub', url + 'pages/page.html', '565px', '466px');
$('<div class="submenu" ></div>').appendTo(wrapper).append(ifrm);
another function change the source of the iframe
:
outer_doc.find("#iframe_sub").attr('src',menu_item).
on the second function I get this error on firebug console on firefox 5.0:
attempt to run compile-and-go script on a cleared scope
@ jquery.1.6.1.js (line 16)
what does it mean?