How to call iframe's function from this iframe
- by Adrian
Hi,
I have an iframe created in Javascript with some function f():
var iframe = document.createElement("iframe");
$(iframe).attr({
width: 0,
height: 0,
frameborder: 0,
src: this.options.url,
name: id,
id: id
});
document.body.appendChild(iframe);
iframe.contentWindow.f = function(data) {
alert("test");
};
Document loaded in this iframe should call function f():
<script ...>f();</script>
And this works perfectly in Firefox but Opera tells, f() is undefined.
Is there any solution?
Adrian.