Include form via AJAX


Failed to execute the [html] macro. Cause: [When using HTML content inline, you can only use inline HTML content. Block HTML content (such as tables) cannot be displayed. Try leaving an empty line before and after the macro.]. Click on this message for details.
        

You can include the form without iframes by loading it via an asynchronous HTTP request (AJAX). Support for the possible embedding options can be found in FORMCYCLE directly under Publish.

    <!DOCTYPE html>
 <html>
     <head>
         <meta charset="utf-8">
         <!-- jQuery must be loaded-->
         <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
         <!-- configure path to your server, the id of the content element where the form should placed into and id of the form.-->
         <script src="https://demo2.formcycle.eu/formcycle/form/include.js?auto=1&form_container_id=content&form_id=564&form_base=https://demo2.formcycle.eu/formcycle"></script>
     </head>
 
     <body class="body">
         <!-- this is the div where the form will be put -->
         <div id="content"></div>
     </body>
 </html>