GirlFriday1
Programmer
Hello! I have a popup window that updates info in a database, closes and is supposed to refresh the table in the parent window. It works, except that the user must interact with a warning box to continue. I need to get rid of this box. Any suggestions?
My code to date is this:
<script language=javascript>
function setOther(){
window.opener.location.pathname = "/ServiceBulletins/admin/manage.asp";
window.opener.DeptForm.submit();
window.opener.location.reload();
window.close()
}
Thanks!
My code to date is this:
<script language=javascript>
function setOther(){
window.opener.location.pathname = "/ServiceBulletins/admin/manage.asp";
window.opener.DeptForm.submit();
window.opener.location.reload();
window.close()
}
Thanks!