Question
Javascript Refreshed page does not bring back current data
I have the following javascript below that closes the action
page and then "refreshes" the referring page that the form (a
popup) came from. However, I am finding that the referring page
does not refresh with the data that was submitted via the popup
form--I have to right click and reload the page. Is there a better
way to refresh the page so that my submitted data is reloaded?
Thanks!
<cfoutput>
<script language="javascript" type="text/javascript">
function closeRefresh() {
window.opener.location.href='https://a_website.com/#url.opptyID#';
self.close();
}
</script>
</cfoutput>
Thanks!
<cfoutput>
<script language="javascript" type="text/javascript">
function closeRefresh() {
window.opener.location.href='https://a_website.com/#url.opptyID#';
self.close();
}
</script>
</cfoutput>
