I opened popup, then I call submit() function. If there's no window.close() function in this code, submit() could be called. But after I added window.close() function, submit() is not working. cannot call controller(?) plz help for this. Thanks
var frm = document.getElementById("modifyForm");
frm.action = G_CONTEXT_PATH + "/web/bndtAdmin/bndtUsermodify.do?bndtUserSeq=" + bndtUserSeq;
frm.method = "POST";
frm.submit();
window.close();