I'm writing a script that will cause all links in a pop-up window to open in the parent window. Here's what I have in the head:
<script language="JavaScript" type="text/javascript">
<!--
function checkPops() {
if (window.opener && !window.opener.closed) {
var x = document.getElementsByTagName('a');
for (var i=0;i<x.length;i++) {
x.target=window.opener.name;
}
}
}
//-->
</script>
I'm calling the function with an "onLoad" in the <body> tag, and everything works great in Firefox. The problem is, I get a "stack overflow" error in IE. The error points to the line that contains the <body> tag to call the function. I don't see anything that should be causing this problem, can anyone else?
Thanks,
Alex
<script language="JavaScript" type="text/javascript">
<!--
function checkPops() {
if (window.opener && !window.opener.closed) {
var x = document.getElementsByTagName('a');
for (var i=0;i<x.length;i++) {
x.target=window.opener.name;
}
}
}
//-->
</script>
I'm calling the function with an "onLoad" in the <body> tag, and everything works great in Firefox. The problem is, I get a "stack overflow" error in IE. The error points to the line that contains the <body> tag to call the function. I don't see anything that should be causing this problem, can anyone else?
Thanks,
Alex