Skip to content Skip to sidebar Skip to footer

Breaking Out Of Iframe In Docusign

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 th

Solution 1:

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>

Post a Comment for "Breaking Out Of Iframe In Docusign"