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;