-2

I want to know that is child popup completely lorded or not?

When i use internal pages of domain like test.html it working but when i am trying with external domain as in my code it not working . so is the any way to achieve this with JavaScript or Jquery.

I am writing code as following.

<script type="text/javascript">
   var popup;
   function test() 
   {
        popup = window.open("http://dailyhoroscope.com/", "Popup", "width=300,height=100");
        popup.onload = function()
        {
              // Do Somthing 
        }
   };        
</script>
bhaveshkac
  • 477
  • 2
  • 8
  • 15

1 Answers1

0

If you do not have this onload declaration on the body, add it (or any event which you are trying to create a window with)

nerdsville
  • 78
  • 6