Using Jquery, how can I get the URL of an iframe after redirection has occurred to a URL in th开发者_如何学JAVAe same domain?
The suggestion from sunn0 should work with this slight amendment.
$("#iframeid").load(function(){
alert(this.contentWindow.location);
});
精彩评论