fischadler
Programmer
Hi,
I am using the code below to open a pop up window. The pop up window has a link which, if clicked, should update the page in the parent window that originally called the pop up.
I tried using <a target="_parent"> but the new page loads in the pop up.
Is there some other way to do it?
Thanks
P.S. Excuse the pun in the subject!
-Fischadler
I am using the code below to open a pop up window. The pop up window has a link which, if clicked, should update the page in the parent window that originally called the pop up.
Code:
<script>
<!-- Hide from old browsers
function winopen(PageURL){
window.open(PageURL, 'NewWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=750,height=400,left=0,top=0')
}
// -->
</script>
I tried using <a target="_parent"> but the new page loads in the pop up.
Is there some other way to do it?
Thanks
P.S. Excuse the pun in the subject!
-Fischadler