If you encounter an error with JQuery, it is most probably the fact that it's missing. This error depends on the set of tools used in order to create your website. 


If this error comes up, we recommend the following:


This is the original script that you will receive from our team.

<div id="survey-form-lite"></div>
                  <script type="text/javascript" src="https://sf.move4u.com/surveyformlt.integration.js"></script>
                  <script type="text/javascript">
                    $(window).on("load", function () {
                      var placeholder = document.getElementById('survey-form-lite');
                      var lang = 'nl';
                      var key = 'YOUR KEY';
                      var cid = 'YOUR CID';
                      DrawSurveyFormLite(placeholder, key, cid, lang);
                    });
                  </script>

Adjust it like this.

    <div id="survey-form-lite"></div>
                                    <script type="text/javascript" src="https://sf.move4u.com/surveyformlt.integration.js"></script>
                                    <script type="text/javascript">
                                        $(window).on("load", function () {  jQuery(document).ready(function($){
                                            var placeholder = document.getElementById('survey-form-lite');
                                            var lang = 'nl';
                                            var key = 'YOUR KEY';
                                            var cid = 'YOUR CID';
                                            DrawSurveyFormLite(placeholder, key, cid, lang);
                                        });
                                    </script>


This should resolve the error. If it persists after following this step, don't hesitate to reach out to support@move4u.com for further assistance.