Survey.StylesManager.applyTheme("bootstrap");
Survey.defaultBootstrapCss.navigationButton = "btn btn-green";
var json = {
title: "American History",
showProgressBar: "bottom",
showTimerPanel: "top",
maxTimeToFinishPage: 10,
maxTimeToFinish: 25,
firstPageIsStarted: true,
startSurveyText: "Start Quiz",
pages: [
{
"elements": [
{
"type": "html",
"html": "You are about to start quiz by history. <br/>You have 10 seconds for every page and 25 seconds for the whole survey of 3 questions.<br/>Please click on <b>'Start Quiz'</b> button when you are ready."
}
]
},
{
"elements": [
{
"type": "radiogroup",
"name": "civilwar",
"title": "When was the Civil War?",
"choices": [ "1750-1800", "1800-1850", "1850-1900", "1900-1950", "after 1950" ],
"correctAnswer": "1850-1900"
}
]
},
{
"elements": [
{
"type": "radiogroup",
"name": "libertyordeath",
"title": "Who said 'Give me liberty or give me death?'",
"choicesOrder": "random",
"choices": [ "John Hancock", "James Madison", "Patrick Henry", "Samuel Adams" ],
"correctAnswer": "Patrick Henry"
}
]
},
{
"maxTimeToFinish": 15,
"elements": [
{
"type": "radiogroup",
"name": "magnacarta",
"title": "What is the Magna Carta?",
"choicesOrder": "random",
"choices": [ "The foundation of the British parliamentary system", "The Great Seal of the monarchs of England", "The French Declaration of the Rights of Man", "The charter signed by the Pilgrims on the Mayflower" ],
"correctAnswer": "The foundation of the British parliamentary system"
}
]
}
],
completedHtml: "<h4>You have answered correctly <b>{correctedAnswers}</b> questions from <b>{questionCount}</b>.</h4>"
};
window.survey = new Survey.Model(json);
survey.onComplete.add(function(sender) {
document.querySelector('#surveyResult').textContent =
"Result JSON:\n" + JSON.stringify(sender.data, null, 3);
});
$("#surveyElement").Survey({
model: survey
});
<!DOCTYPE html>
<html lang="en">
<head>
<title>Quiz, 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 rel="stylesheet" href="https://unpkg.com/bootstrap@3.3.7/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./index.css">
</head>
<body style="margin: 0">
<div id="surveyElement" style="display:inline-block;width:100%;">
</div>
<div id="surveyResult"></div>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>
Help us serve you better by taking this brief survey.
We are interested to learn more about your
experience of using our libraries.
We'd really appreciate your feedback.
Start the SurveyApproximate time to complete: 2 min.