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>