Please enable JavaScript to view this site.

thankQ Help

If you want to setup the thankQ pages as an iFrame in your website please put the following HTML code in the iFrame (parent) page (replacing the part in Red as the URL of the thankQ page you wish to integrate):

<html>

   <head>

       <meta http-equiv="X-UA-Compatible" content="IE=edge">

       <style>

           iframe{width: 1px; min-width: 100%; border: 0; overflow: hidden;}}

       </style>

       <script type="text/javascript" src="https://web.thankqportal.com/Scripts/iFrameResizer/iframeResizer.min.js"></script>

       <script type="text/javascript" src="https://web.thankqportal.com/Scripts/iFrameResizer/iframe.helper.js"></script>

   </head>

   <body>

       <div style="width: 100%;height: 100%;padding: 0px;margin: 0px;overflow: hidden;">

           <iframe id="thankQ-iframe" src='' frameborder="0" allowTransparency="true" scrolling="no"></iframe>

       </div>

       <script>

           var iframeId = 'thankQ-iframe';

           var baseIframeSrc = '{{URL OF THE CHILD PAGE}}';

           passingParametersToIframe(iframeId, baseIframeSrc);

   

           iFrameResize({log:false,

                     checkOrigin:false,

                     heightCalculationMethod: 'bodyOffset',

                     scrolling: false}, '#thankQ-iframe')

       </script>

   </body>

</html>