<button onclick="reload('https://www.rbc.ru')">Перезагрузить iframe</button>
<iframe src="https://learn.javascript.ru/iframes"></iframe>
<script>
function reload(source) {
var iframe = document.getElementsByTagName('iframe')[0];
iframe.src = source;
iframe.onload = function() {
alert('Загружено. Можно делать переход');
}
}
</script>