Breaking out of Iframe in Docusign

2020-02-15 04:14发布

I am using Iframes to render the embedded Docusign document. I was successfully able to sign the document in the Iframe and get redirected to my specified URL after signing.

But the Redirect URL is displayed inside the IFrame. I need to breakout of iframe and display in parent page.

I have tried the following code snippet but to no avail.

1) th:target="_parent" in the iframe tag

2) if (top !== self) top.location.href = self.location.href;

1条回答
够拽才男人
2楼-- · 2020-02-15 04:41

I was able to find solution for that. I just needed to catch the Docusign redirect in the Iframe and hide it.

 <iframe id ="docusignFrame" name="docusignFrame" th:src="${docusignURL}" width="100%" height="900" onLoad="(this.contentWindow.location != '' ? DocusignCompleted(this.contentWindow.location) : void(0));">
</iframe>
<script>
function DocusignCompleted(url) {
                $("#docusignFrame").hide();}
</script>
查看更多
登录 后发表回答