is it possible for an iframe to call a parent's function, even if they are not in the same domain? My actual approach lifts a security error when they are not on the same domain:
<script>
function test()
{ alert('wow');
}
</script>
<iframe src="...."></iframe>
And inside the iframe i would do this:
<script>
function fin()
{ top.test(); }
</script>
Many thanks :)