You can only reload the current iframe href if it's for the same domain (single origin policy) with following code:
document.getElementById('myIframe').contentWindow.location.reload(true);
or get the current href
var currentHref = document.getElementById('myIframe').contentWindow.location.href;