Page A bottom frame had a open text window button and also displays current text messages with date and time. User opens text window and types in a message and clicks a save button. Text window closes and Page A refreshes using these lines.
window.opener.location.reload(true);
window.close();
This works great on my PC, but everybody else with the same IE version browser gets a permission denied error. What's up with that?
window.opener.location.reload(true);
window.close();
This works great on my PC, but everybody else with the same IE version browser gets a permission denied error. What's up with that?