There is iframe1/iframe2/iframe3/iframe4 define in main from where popup generated (using window.showModa lDialog()). and from popup if I am trying target="iframe1 id" and document.Popupf orm.submit() doesn't work in safari.
Problem 1
This works on all other browser not in Safari MAC
document.popupf orm.target="ifr ameid"
document.popupf orm.submit();
Problem 2
document.popupf orm.target="_pa rent/_self/_top/_blank" or target ="";
document.popupf orm.submit();
If I am trying target="_parent/_self/_top/_blank" or target="", from will submit and load the xyz.html in popup window only and then I have to call iframe4.locatio n="som/action" to reload iframe4 in main form before closing the popupwindow but
iframe4.locatio n="som/action";
window.close();
Not working if I close manually popup window then the iframe4 getting reload. but not in case window.close().
Can anyone help please this issue killing me :(
Problem 1
This works on all other browser not in Safari MAC
document.popupf orm.target="ifr ameid"
document.popupf orm.submit();
Problem 2
document.popupf orm.target="_pa rent/_self/_top/_blank" or target ="";
document.popupf orm.submit();
If I am trying target="_parent/_self/_top/_blank" or target="", from will submit and load the xyz.html in popup window only and then I have to call iframe4.locatio n="som/action" to reload iframe4 in main form before closing the popupwindow but
iframe4.locatio n="som/action";
window.close();
Not working if I close manually popup window then the iframe4 getting reload. but not in case window.close().
Can anyone help please this issue killing me :(