I need refresh in parent site / refresh my browser when I click testing. I have source index.php:
This works in IE, Chrome and Firefox and may be others
window.top.location.reload();
Try adding "window" after parent.
parent.window.location.reload(true);
use this function
function reloadParentPage() {
var selfUrl = unescape(parent.window.location.pathname);
parent.location.reload(true);
parent.window.location.replace(selfUrl);
parent.window.location.href = selfUrl;
}