I have an iframe that returns data to the top.document window just fine by using:
$("#someDiv", top.document).html(data);
The above works fine. Now I want to be able to hide a div on the top document and I try:
$("#someDiv", top.document).toggle("slow");
It is not working... any ideas?