-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 1.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<title>Asked Demo</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
type="text/css">
</head>
<body>
<div class="container">
<div class="asked" id="asked">
<!-- where the quiz main copy goes -->
</div>
</div>
<script src="js/jquery.js"></script>
<script src="js/asked-config.js"></script>
<script src="js/asked.js"></script>
<script>
$(function () {
$('.asked').asked({
// textButtonSave: "Save the questions",
data: quizJSON.quiz,
events: {
onCompleteQuiz: function (option) {
console.log(option);
alert("finish")
}
}
});
});
</script>
</body>
</html>