I am trying to use Freshdesk's feedback widget in my Ionic 3 application. I am trying to show the widget on my page by using freshdesk script as follows:
<script type="text/javascript" src="http://assets.freshdesk.com/widget/freshwidget.js"></script> <style type="text/css" media="screen, projection"> @import url(http://assets.freshdesk.com/widget/freshwidget.css); </style> <iframe title="Feedback Form" class="freshwidget-embedded-form" id="freshwidget-embedded-form" src="https://rpragesh.freshdesk.com/widgets/feedback_widget/new?&widgetType=embedded&screenshot=No&searchArea=no" scrolling="no" height="500px" width="100%" frameborder="0" > </iframe>
The widget is getting displayed and working fine but after posting feedback when I click back, it reloads the whole app. I think it is because of the iframe but not sure.
Any help is appreciated.

