Example of using a Complete Trigger to finish the survey immediately
Complete Trigger - finishes the survey.
Survey.StylesManager.applyTheme("default");
var json = {
triggers: [{ type: "complete", name: "exit1", operator: "equal", value: "Yes" },
{ type: "complete", name: "exit2", operator: "equal", value: "Yes" }],
pages: [
{ title: "What operating system do you use?",
questions: [
{type:"checkbox", name:"opSystem", title: "OS", hasOther: true,
choices:["Windows", "Linux", "Macintosh OSX"]},
{type:"radiogroup", name:"exit1", title:"Do you want to finish the survey?", choices: ["Yes", "No"], colCount: 0}
]
},
{ title: "What language(s) are you currently using?",
questions: [
{type:"checkbox", name:"langs",title:"Plese select from the list",
colCount: 4,
choices:["Javascript", "Java", "Python", "CSS", "PHP", "Ruby", "C++", "C",
"Shell", "C#", "Objective-C", "R", "VimL", "Go", "Perl", "CoffeeScript",
"TeX", "Swift", "Scala", "Emacs List", "Haskell", "Lua", "Clojure",
"Matlab", "Arduino", "Makefile", "Groovy", "Puppet", "Rust", "PowerShell"]
},
{type:"radiogroup", name:"exit2", title:"Do you want to finish the survey?", choices: ["Yes", "No"], colCount: 0}
]},
{ 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').innerHTML = "result: " + JSON.stringify(result.data);
});
$("#surveyElement").Survey({
model: survey
});
<!DOCTYPE html>
<html>
<head>
<title>Complete Trigger - finishes the survey., jQuery Survey Library Example</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://unpkg.com/jquery"></script>
<script src="https://surveyjs.azureedge.net/1.0.69/survey.jquery.js"></script>
<link href="https://surveyjs.azureedge.net/1.0.69/survey.css" type="text/css" rel="stylesheet" />
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div id="surveyElement">
</div>
<div id="surveyResult"></div>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>