HTML:
<iframe id="iframeID" src="url"></iframe>
<span class="reload-1">Обновить фрейм на jQuery</span>
<span class="reload-2">Обновить фрейм на JS</span>jQuery:
$('.reload-1').click(function(){
$('#iframeID')[0].contentWindow.location.reload(true);
});JavaScript:
document.querySelector('.reload-2').addEventListener('click', event => {
document.getElementById('iframeID').contentWindow.location.reload(true);
});