Hi,
I have a contactwce.html page and from there i launch popup.html. When popup.html closes i want to refresh
contact.html.
I have tried several methods but can't get it right. Any ideas on how i can achieve this?
Thanks for any advice
I have a contactwce.html page and from there i launch popup.html. When popup.html closes i want to refresh
contact.html.
I have tried several methods but can't get it right. Any ideas on how i can achieve this?
Thanks for any advice
Code:
<html>
<head>
<script>
function closeIt(){
//window.location.href = "contactwce.html"
//window.location.reload( false );
//parent.FRAMENAME.l ocation.href='pageToGo.aspx'");
window.opener.refresh("contactwce.html")
//document.location.reload("contactwce.html")
//self.close();
}
</script>
</head>
<BODY onLoad="closeIt()">
</body>
</html>
</HEAD>