Forum Moderators: open
I am using iframe like this :
<iframe frameborder="0" scrolling="no" height="300" width="300" name="myFrame" src="http://www.test.com/test.html"></iframe>
Now the issue is that the domain "test.com/test.html" page contains the javascript code as --
<script language="javascript">
if(top!=self)
top.location.href = "http://www.google.com";
</script>
So it is redirecting my whole site to new domain - google.com
Can i stop this by any how?
Thanks in advance.