Load Survey from Service
Load a survey from the service
SurveyEditor.StylesManager.applyTheme("bootstrap");
var editorOptions = { };
var editor = new SurveyEditor.SurveyEditor("editorElement", editorOptions);
editor.loadSurvey("d5220f76-4802-40cf-ad67-61d7e55608e5");
<!DOCTYPE html>
<html>
<head>
<title>Load a survey from the service, Survey Builder Example</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.0/knockout-min.js"></script>
<script src="https://surveyjs.azureedge.net/1.0.69/survey.ko.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.0/ace.min.js" type="text/javascript" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.0/ext-language_tools.js" type="text/javascript" charset="utf-8"></script>
<!-- Uncomment to enable Select2
<script src="https://unpkg.com/jquery"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.min.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/js/select2.min.js"></script>
-->
<link href="https://surveyjs.azureedge.net/1.0.69/surveyeditor.css" type="text/css" rel="stylesheet" />
<script src="https://surveyjs.azureedge.net/1.0.69/surveyeditor.js"></script>
<link rel="stylesheet" href="https://unpkg.com/bootstrap@3.3.7/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div id="surveyContainer">
<div id="editorElement"></div>
</div>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>