Same things but a bit easier way will be How to refresh parent page from page within iframe.
Just call the parent page's function to invoke javascript function to reload the page:
window.location.reload();
Or do this directly from the page in iframe:
window.parent.location.reload();
Both works.