Survey.StylesManager.applyTheme("modern");
var json = {
title: "Software developer survey.",
pages: [
{ title: "What operating system do you use?",
questions: [
{type:"checkbox", name:"opSystem", title: "OS", hasOther: true, isRequired: true,
choices:["Windows", "Linux", "Macintosh OSX"]}
]
},
{ title: "What language(s) are you currently using?",
questions: [
{type:"checkbox", name:"langs",title:"Please select from the list",
colCount: 4, isRequired: true,
choices:["Javascript", "Java", "Python", "CSS", "PHP", "Ruby", "C++", "C",
"Shell", "C#", "Objective-C", "R", "VimL", "Go", "Perl", "CoffeeScript",
"TeX", "Swift", "Scala", "Emacs Lisp", "Haskell", "Lua", "Clojure",
"Matlab", "Arduino", "Makefile", "Groovy", "Puppet", "Rust", "PowerShell"]
}
]},
{ title: "Please enter your name and e-mail",
questions: [
{type: "text", name: "name", title: "Name:"},
{type: "text", name: "email", title: "Your e-mail"}]
}]
};
window.survey = new Survey.Model(json);
survey.onComplete.add(function(result) {
document.querySelector('#surveyResult').textContent =
"Result JSON:\n" + JSON.stringify(result.data, null, 3);
});
survey.showProgressBar = 'bottom';
$("#surveyElement").Survey({
model: survey
});
<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of setting the most used properties of the survey, jQuery Survey Library Example</title>
<meta name="viewport" content="width=device-width" />
<script src="https://unpkg.com/jquery"></script>
<script src="/DevBuilds/survey-jquery/survey.jquery.min.js"></script>
<link href="/DevBuilds/survey-knockout/modern.css" type="text/css" rel="stylesheet" />
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div id="surveyElement" style="display:inline-block;width:100%;">
</div>
<div id="surveyResult"></div>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>