Survey.StylesManager.applyTheme("orange");
var surveyValueChanged = function (sender, options) {
var el = document.getElementById(options.name);
if(el) {
el.value = options.value;
}
};
var json = {
"elements": [
{
"type": "text",
"name": "name",
"title": "Your name:"
},
{
"type": "text",
"name": "email",
"title": "Your e-mail"
},
{
"type": "checkbox",
"name": "car",
"title": "What car are you driving?",
"isRequired": true,
"colCount": 4,
"hasNone": true,
"choices": [ "Ford", "Vauxhall", "Volkswagen", "Nissan", "Audi", "Mercedes-Benz", "BMW", "Peugeot", "Toyota", "Citroen" ]
}
]
};
window.survey = new Survey.Model(json);
survey.onComplete.add(function(sender) {
document.querySelector('#surveyResult').textContent =
"Result JSON:\n" + JSON.stringify(sender.data, null, 3);
});
survey.data = {name:'John Doe', email: 'johndoe@nobody.com', car:['Ford']};
$("#surveyElement").Survey({
model: survey ,onValueChanged: surveyValueChanged
});
<!DOCTYPE html>
<html lang="en">
<head>
<title>Survey Data, 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-core/survey.min.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>