I am trying to get the url of iframe
after a redirection.
I tried below given codes
document.getElementById("content-preview").contentWindow.location.href;
document.frames['content-preview'].location.href;
$('iframeId').contents().get(0).location.href;
But none worked. All these returning the initial src url only. The parent window and iframe are in same domain only.
Please let me know if there is a solution for this.
I referred This question to reffer.